-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·67 lines (67 loc) · 1.54 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "console-probe",
"version": "3.3.2",
"description": "Inspect JavaScript object methods and properties in the console.",
"main": "console-probe.js",
"repository": {
"type": "git",
"url": "git+https://github.com/grantcarthew/node-console-probe.git"
},
"scripts": {
"clean": "del dist",
"test": "jest",
"watch": "jest --watch",
"lint": "standard",
"prepublish": "npm run build",
"build": "npm run clean && standard && babel src -d dist && npm test",
"upgrade": "npm run upgrade:rm && npm run upgrade:ncu && npm run upgrade:npm-install",
"upgrade:rm": "rm node_modules -Rf",
"upgrade:ncu": "npm-check-updates -u",
"upgrade:npm-install": "npm install",
"t": "node t.js"
},
"keywords": [
"console",
"object",
"inspect",
"probe",
"discover",
"api"
],
"author": "Grant Carthew",
"license": "MIT",
"standard": {
"globals": [
"test",
"expect",
"jest",
"beforeAll",
"afterAll",
"describe",
"SharedArrayBuffer",
"Atomics",
"BigInt"
],
"ignore": [
"dist"
]
},
"dependencies": {
"archy": "^1.0.0",
"chalk": "^2.4.2",
"fast-safe-stringify": "^2.0.7",
"jsome": "^2.5.0",
"json-colorizer": "^2.2.1",
"prettyjson": "^1.2.1",
"strip-ansi": "^5.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"del-cli": "^3.0.0",
"jest": "^24.9.0",
"nodemon": "^1.19.3",
"npm-check-updates": "^3.1.24",
"standard": "^14.3.1"
}
}