-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 1.78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "on3",
"version": "1.18.2",
"description": "Simplifies managing Node modules under Git version control.",
"main": "./index.js",
"bin": {
"on": "./bin/cli.js",
"on3": "./bin/cli.js"
},
"scripts": {
"prebuild": "babel src -d build",
"build": "node build/make.js",
"lint": "eslint ./*.js src/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/luzmcosta/on3.git"
},
"keywords": [
"Node",
"Git",
"repo",
"management",
"CLI",
"version",
"control",
"Vorpal",
"ES6",
"Babel"
],
"author": "Luz M. Costa <[email protected]> (http://luzmcosta.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/luzmcosta/on3/issues"
},
"homepage": "https://github.com/luzmcosta/on3#readme",
"devDependencies": {
"babel-cli": ">=6.5.1",
"babel-core": ">=6.5.2",
"babel-preset-es2015": ">=6.5.0",
"babel-preset-stage-0": ">=6.5.0",
"eslint": "2.2.0"
},
"dependencies": {
"shelljs": "0.6.0",
"vorpal": "1.9.4"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"browser": true,
"es6": true,
"node": true
},
"rules": {
"comma-spacing": [
2,
{
"before": false,
"after": true
}
],
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"valid-jsdoc": [
2,
{
"requireParamDescription": false,
"requireReturn": true,
"requireReturnDescription": false
}
]
}
},
"tonicExample": ""
}