-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.28 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
{
"name": "uninspected",
"version": "5.0.0",
"description": "util.inspect replacement based on Unexpected's output and type system",
"main": "./lib/uninspected",
"dependencies": {
"eslint-plugin-n": "^15.1.0",
"magicpen-prism": "^5.0.0",
"unexpected": "^13.0.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^8.3.0",
"nyc": "^15.0.0",
"offline-github-changelog": "^2.0.0",
"prettier": "~2.5.0",
"rollup": "^2.0.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.4",
"rollup-plugin-terser": "^7.0.0",
"sinon": "^12.0.1",
"unexpected-sinon": "^11.0.0"
},
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,md}'",
"test": "mocha",
"test:ci": "npm run coverage",
"coverage": "NODE_ENV=development nyc --reporter=lcov --reporter=text --all -- npm test && echo google-chrome coverage/lcov-report/index.html",
"build": "rollup --config rollup.config.js --sourcemap --format umd --name uninspected -o uninspected.js lib/uninspected.js",
"bookmarklet": "npm run build && (echo -n '<!DOCTYPE html><html><body><a href=\"javascript:' && <uninspected.js sed -e 's/&/\\&/g;' | sed -e 's/\"/\\"/g;' | tr -d '\\n' && echo -n '%0a;console=uninspected;void(null);\">Replace the console object with uninspected</a></body></html>') > bookmarklet.html",
"prepublishOnly": "npm run bookmarklet",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git://github.com/unexpectedjs/uninspected.git"
},
"keywords": [
"util",
"inspect",
"object",
"depth",
"color",
"types"
],
"author": "Andreas Lind <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/unexpectedjs/uninspected/issues"
},
"homepage": "https://github.com/unexpectedjs/uninspected",
"nyc": {
"include": [
"lib/**"
]
}
}