-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "openscad-format",
"version": "1.0.0",
"description": "An opinionated formatter for the OpenSCAD language.",
"main": "./index.js",
"bin": {
"openscad-format": "./index.js"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix",
"test": "mocha",
"reset-clean": "./index.js -i './test/dirty/*.scad' -o ./test/clean/",
"all": "eslint . --fix && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maxattax97/openscad-format.git"
},
"keywords": [
"openscad",
"format",
"cad",
"3d"
],
"author": "Max O'Cull",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Maxattax97/openscad-format/issues"
},
"homepage": "https://github.com/Maxattax97/openscad-format#readme",
"dependencies": {
"clang-format": "^1.2.4",
"diff-match-patch": "^1.0.4",
"find-file-recursively-up": "^1.1.2",
"fs-extra": "^8.0.0",
"get-stdin": "^6.0.0",
"globby": "^9.1.0",
"tmp-promise": "^1.0.5",
"yargs": "^13.2.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^6.0.2"
},
"peerDependencies": {
"eslint-config-airbnb-base": "^13.1.0"
},
"engines": {
"node": ">=8.0.0"
}
}