-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1012 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 1012 Bytes
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
{
"name": "depex",
"description": "CLI that helped expose dependencies",
"version": "0.1.1",
"bin": "src/index.js",
"license": "MIT",
"author": {
"name": "Roman Masyhar",
"email": "mhrohman@live.com",
"url": "https://github.com/rohmanhm"
},
"repository": "rohmanhm/depex",
"scripts": {
"test": "xo && ava"
},
"dependencies": {
"commander": "^2.9.0",
"console.table": "^0.10.0"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^5.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.0.1",
"execa": "^1.0.0",
"string": "^3.3.3",
"xo": "^0.22.0"
},
"xo": {
"extends": [
"standard"
],
"plugins": [
"standard",
"promise"
],
"rules": {
"object-curly-spacing": [
"error",
"always"
],
"template-curly-spacing": [
"error",
"always"
]
}
}
}