-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.17 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
56
57
58
{
"name": "@panosoft/elm-grove",
"version": "1.2.3",
"description": "Advanced Package Manager for Elm",
"scripts": {
"test": "./build.sh && node main"
},
"bin": {
"grove": "main.js"
},
"license": "Unlicense",
"dependencies": {
"@elm-node/core": "git+https://github.com/elm-node/core.git#semver:^3.0.0",
"check-node-version": "^2.1.0",
"command-line-args": "^4.0.6",
"command-line-commands": "^2.0.0",
"command-line-usage": "^4.0.0",
"cpr": "^2.0.2",
"glob": "^7.1.2",
"mkdirp": "^0.5.1",
"nodegit": "^0.20.2",
"prompt": "^1.0.0",
"rimraf": "^2.6.1",
"xhr2": "^0.1.4"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"no-console": 0,
"no-unused-vars": 0,
"no-useless-escape": 0,
"indent": [
"error",
"tab",
{
"SwitchCase": 1,
"MemberExpression": 0
}
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}
}