forked from json5/json5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.27 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "json-z",
"version": "3.3.2",
"description": "JSON for everyone.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": "lib/cli.js",
"browser": "dist/index.js",
"files": [
"lib/",
"dist/"
],
"engines": {
"node": ">=6"
},
"scripts": {
"build": "rollup -c && copyfiles -f lib/index.d.ts dist/",
"build-package": "node build/package.js",
"build-unicode": "node build/unicode.js",
"coverage": "tap --coverage-report html test",
"lint": "eslint --fix .",
"prepublishOnly": "npm run production",
"preversion": "npm run production",
"production": "npm run lint && npm test && npm run build",
"test": "tap -Rspec --100 test",
"quick-test": "tap -T -Rspec test/stringify.spec.js",
"version": "npm run build-package && git add package.json5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kshetline/json-z.git"
},
"keywords": [
"bigint",
"big decimal",
"ecmascript",
"es5",
"es6",
"es2015",
"json",
"json5",
"jsonz",
"json-z"
],
"author": "Kerry Shetline <kerry@shetline.com>",
"contributors": [
"Aseem Kishore <aseem.kishore@gmail.com>",
"Max Nanasy <max.nanasy@gmail.com>",
"Andrew Eisenberg <andrew@eisenberg.as>",
"Jordan Tucker <jordanbtucker@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kshetline/json-z/issues"
},
"homepage": "https://json-z.org/",
"nyc": {
"exclude": [
"lib/platform-specifics.js",
"test"
]
},
"dependencies": {
"minimist": "^1.2.5"
},
"devDependencies": {
"big-integer": "^1.6.48",
"copyfiles": "^2.3.0",
"core-js": "^2.6.11",
"coveralls": "^3.1.0",
"decimal.js": "^10.2.0",
"decimal.js-light": "^2.5.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"regenerate": "^1.4.1",
"rollup": "^1.32.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"sinon": "^6.3.5",
"tap": "^12.7.0",
"unicode-10.0.0": "^0.7.5"
}
}