1
|
{
|
2
|
"name": "json5",
|
3
|
"version": "1.0.1",
|
4
|
"description": "JSON for humans.",
|
5
|
"main": "lib/index.js",
|
6
|
"bin": "lib/cli.js",
|
7
|
"browser": "dist/index.js",
|
8
|
"files": [
|
9
|
"lib/",
|
10
|
"dist/"
|
11
|
],
|
12
|
"scripts": {
|
13
|
"build": "babel-node build/build.js && babel src -d lib && rollup -c",
|
14
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
15
|
"lint": "eslint --fix build src",
|
16
|
"prepublishOnly": "npm run lint && npm test && npm run production",
|
17
|
"pretest": "cross-env NODE_ENV=test npm run build",
|
18
|
"preversion": "npm run lint && npm test && npm run production",
|
19
|
"production": "cross-env NODE_ENV=production npm run build",
|
20
|
"test": "nyc --reporter=html --reporter=text mocha"
|
21
|
},
|
22
|
"repository": {
|
23
|
"type": "git",
|
24
|
"url": "git+https://github.com/json5/json5.git"
|
25
|
},
|
26
|
"keywords": [
|
27
|
"json",
|
28
|
"json5",
|
29
|
"es5",
|
30
|
"es2015",
|
31
|
"ecmascript"
|
32
|
],
|
33
|
"author": "Aseem Kishore <aseem.kishore@gmail.com>",
|
34
|
"contributors": [
|
35
|
"Max Nanasy <max.nanasy@gmail.com>",
|
36
|
"Andrew Eisenberg <andrew@eisenberg.as>",
|
37
|
"Jordan Tucker <jordanbtucker@gmail.com>"
|
38
|
],
|
39
|
"license": "MIT",
|
40
|
"bugs": {
|
41
|
"url": "https://github.com/json5/json5/issues"
|
42
|
},
|
43
|
"homepage": "http://json5.org/",
|
44
|
"dependencies": {
|
45
|
"minimist": "^1.2.0"
|
46
|
},
|
47
|
"devDependencies": {
|
48
|
"babel-cli": "^6.26.0",
|
49
|
"babel-core": "^6.26.0",
|
50
|
"babel-plugin-add-module-exports": "^0.2.1",
|
51
|
"babel-plugin-external-helpers": "^6.22.0",
|
52
|
"babel-plugin-istanbul": "^4.1.5",
|
53
|
"babel-preset-env": "^1.6.1",
|
54
|
"babel-register": "^6.26.0",
|
55
|
"babelrc-rollup": "^3.0.0",
|
56
|
"coveralls": "^3.0.0",
|
57
|
"cross-env": "^5.1.4",
|
58
|
"del": "^3.0.0",
|
59
|
"eslint": "^4.18.2",
|
60
|
"eslint-config-standard": "^11.0.0",
|
61
|
"eslint-plugin-import": "^2.9.0",
|
62
|
"eslint-plugin-node": "^6.0.1",
|
63
|
"eslint-plugin-promise": "^3.7.0",
|
64
|
"eslint-plugin-standard": "^3.0.1",
|
65
|
"mocha": "^5.0.4",
|
66
|
"nyc": "^11.4.1",
|
67
|
"regenerate": "^1.3.3",
|
68
|
"rollup": "^0.56.5",
|
69
|
"rollup-plugin-babel": "^3.0.3",
|
70
|
"rollup-plugin-commonjs": "^9.0.0",
|
71
|
"rollup-plugin-node-resolve": "^3.2.0",
|
72
|
"rollup-plugin-uglify": "^3.0.0",
|
73
|
"sinon": "^4.4.2",
|
74
|
"unicode-9.0.0": "^0.7.5"
|
75
|
}
|
76
|
}
|