-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "coden",
"version": "1.0.2",
"description": "vsc(visual studio code) cli for Mac ",
"main": "index.js",
"scripts": {
"start": "npm publish .",
"test": "./node_modules/.bin/gulp",
"mocha": "./node_modules/.bin/mocha -u bdd",
"cov": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"preferGlobal": "true",
"bin": {
"vsc": "index.js",
"coden": "index.js",
"codek": "kill.js"
},
"repository": {
"type": "git",
"url": "https://github.com/i5ting/coden.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/i5ting/coden/issues"
},
"homepage": "https://github.com/i5ting/coden",
"dependencies": {},
"devDependencies": {
"chai": "^2.3.0",
"coveralls": "^2.11.2",
"gulp": "^3.9.0",
"gulp-mocha": "^2.1.2",
"gulp-watch": "^4.2.4",
"istanbul": "^0.3.16",
"mocha": "^2.2.5"
}
}