forked from GoogleChromeLabs/ndb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "ndb",
"version": "1.0.16",
"description": "Chrome DevTools for Node.js",
"main": "ndb.js",
"repository": "github:GoogleChromeLabs/ndb",
"homepage": "https://github.com/GoogleChromeLabs/ndb#readme",
"engines": {
"node": ">=8.0.0"
},
"bin": {
"ndb": "./ndb.js"
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"prepare": "node build.js",
"dummyScriptForTest": "node -e 'console.log(239)'",
"unit": "./node_modules/mocha/bin/mocha test/test.js",
"integration": "node test/integration.js"
},
"author": "The Chromium Authors",
"license": "Apache-2.0",
"dependencies": {
"chokidar": "^2.0.4",
"clipboardy": "^1.2.3",
"chrome-devtools-frontend": "1.0.578928",
"deasync": "^0.1.13",
"fs-copy-file-sync": "^1.1.1",
"isbinaryfile": "^3.0.2",
"mime": "^2.3.1",
"opn": "^5.3.0",
"puppeteer": "1.6.1",
"rimraf": "^2.6.2",
"uglify-es": "^3.3.10",
"update-notifier": "^2.5.0",
"ws": "^5.2.2",
"xterm": "^3.5.1"
},
"optionalDependencies": {
"ndb-node-pty-prebuilt": "^0.8.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"mocha": "^5.2.0"
}
}