-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "cnyks",
"version": "3.2.1",
"description": "Command line introspection tool for nodejs (interactive runner)",
"main": "lib/",
"scripts": {
"build:demo": "browserify demo/main.js > demo/_main.js",
"eslint": "eslint .",
"checkall": "npm run eslint",
"demo": "node bin/cnyks.js test/data/fuu.js",
"discify": "browserify --ignore cnyks --node -p discify lib/bundle.js | discify-reporter --ir://run --source=disc/graph.json",
"cover": "nyc mocha",
"test": "npm run checkall && npm run cover",
"mocha": "node node_modules/mocha/bin/_mocha -b test/"
},
"repository": {
"type": "git",
"url": "[email protected]:131/cnyks.git"
},
"bin": {
"cnyks": "./bin/cnyks.js"
},
"keywords": [
"command",
"line",
"introspection",
"reflection"
],
"author": "Francois Leurent <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/131/cnyks/issues"
},
"homepage": "https://github.com/131/cnyks",
"dependencies": {
"mout": "^1.2.4",
"nyks": "^6.11.0",
"read": "^2.1.0",
"reflection-js": "^2.2.2"
},
"devDependencies": {
"browserify-wrap": "^1.0.1",
"eslint-plugin-ivs": "^1.0.7",
"expect.js": "^0.3.1",
"mocha": "^3.1.2",
"nyc": "^15.1.0",
"xterm2": "^1.2.0"
}
}