-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "jsonext",
"version": "1.1.0",
"description": "An extension of JSON that supports the Next gen features",
"main": "lib/",
"files": [
"lib/",
"dist/"
],
"scripts": {
"prepublishOnly": "npm run lint && npm test",
"preversion": "npm run lint && npm test",
"build": "node build.js",
"lint": "eslint --fix build.js src/",
"test": "cross-env NODE_ENV=test npm run build && nyc --reporter=html --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jordanbtucker/jsonext.git"
},
"keywords": [
"json",
"json5",
"es5",
"es6",
"es7",
"es2015",
"ecmascript"
],
"author": "Jordan Tucker <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jordanbtucker/jsonext/issues"
},
"homepage": "https://github.com/jordanbtucker/jsonext#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"cross-env": "^3.1.3",
"del": "^2.2.2",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"globby": "^6.1.0",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"regenerate": "^1.3.2",
"sinon": "^1.17.6",
"unicode-9.0.0": "^0.7.0"
}
}