-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 968 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 968 Bytes
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
{
"name": "devtoolx",
"version": "1.0.0",
"description": "devtool box",
"main": "devtoolx.js",
"bin": {
"devtoolx": "bin/devtoolx"
},
"files": [
"bin",
"src",
"worker",
"binding.gyp",
"devtoolx.js",
"LICENSE",
"README.md",
"util.js"
],
"scripts": {
"build": "node-gyp rebuild",
"lint": "clang-format --version && clang-format -i --glob=\"src/**/!(json)[.hpp]\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyj1991/devtoolx.git"
},
"keywords": [
"devtools"
],
"author": "https://github.com/hyj1991",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyj1991/devtoolx/issues"
},
"homepage": "https://github.com/hyj1991/devtoolx#readme",
"dependencies": {
"bindings": "^1.5.0",
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"ejs": "^3.1.8",
"express": "^4.18.2",
"nan": "^2.17.0",
"serve-favicon": "^2.5.0"
}
}