-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 KB
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
{
"name": "json-enhance",
"version": "1.0.0",
"description": "Extend JSON.stringify() & JSON.parse() to handle more values SAFELY",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && export NODE_ENV=production && webpack --config webpack.config.js --progress --colors",
"lint": "./node_modules/.bin/eslint --global require,window --ext .js src",
"test": "jest",
"release": "node ./release.js"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git@github.com:swenyang/json-ext.git"
},
"keywords": [
"json",
"stringify",
"parse"
],
"author": "swenyang",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"colors": "^1.1.2",
"coveralls": "^3.0.0",
"deep-equal-ext": "^1.0.0",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1",
"pre-commit": "^1.2.2",
"regenerator-runtime": "^0.11.0",
"webpack": "^3.10.0"
},
"dependencies": {}
}