-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 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
{
"name": "vorpal-as-default",
"version": "0.0.2",
"description": "Plugin for Vorpal that run defined command if no commands where specified previously",
"readmeFilename": "README.md",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "nyc --reporter=lcov _mocha && cat coverage/lcov.info| codecov",
"build": "babel --presets es2015 src --out-dir lib",
"prepublish": "babel --presets es2015 src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ialpert/vorpal-as-default.git"
},
"keywords": [
"default",
"vorpal",
"command",
"vorpal-plugin"
],
"author": "Igor Alpert",
"license": "MIT",
"bugs": {
"url": "https://github.com/ialpert/vorpal-as-default/issues"
},
"homepage": "https://github.com/ialpert/vorpal-as-default#readme",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"codecov.io": "^0.1.6",
"commitizen": "^2.8.0",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^2.7.0",
"expect": "^1.16.0",
"mocha": "^2.4.5",
"nyc": "^6.4.0",
"semantic-release": "^4.3.5",
"test-console": "^1.0.0",
"vorpal": "^1.10.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}