forked from planttheidea/fast-stringify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.18 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
90
91
92
93
94
95
96
97
{
"author": "[email protected]",
"ava": {
"babel": "inherit",
"failFast": true,
"files": [
"test/*.js"
],
"require": [
"babel-register",
"test/helpers/setup-browser-env.js"
],
"source": [
"src/*.js"
],
"verbose": true
},
"bugs": {
"url": "https://github.com/planttheidea/fast-stringify/issues"
},
"description": "A blazing fast stringifier that safely handles circular objects",
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.4.3",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"benchmark": "^2.1.4",
"browser-env": "^3.2.5",
"decircularize": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-rapid7": "^2.11.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"fast-json-stable-stringify": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"in-publish": "^2.0.0",
"json-cycle": "^1.3.0",
"json-stable-stringify": "^1.0.1",
"json-stringify-safe": "^5.0.1",
"nyc": "^12.0.1",
"optimize-js-plugin": "^0.0.4",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0",
"sinon": "^5.0.7",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
},
"homepage": "https://github.com/planttheidea/fast-stringify#readme",
"keywords": [
"stringify",
"fast",
"serialize",
"json"
],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"name": "fast-stringify",
"repository": {
"type": "git",
"url": "git+https://github.com/planttheidea/fast-stringify.git"
},
"scripts": {
"benchmark": "NODE_ENV=production BABEL_ENV=benchmark babel src --out-dir lib --no-comments && node benchmark/index.js",
"benchmark:updateReadme": "npm run benchmark updateReadme",
"build": "NODE_ENV=production rollup -c",
"clean": "npm run clean:es && npm run clean:lib && npm run clean:dist",
"clean:dist": "rimraf dist",
"clean:es": "rimraf es",
"clean:lib": "rimraf lib",
"dev": "NODE_ENV=development webpack-dev-server --colors --progress --config=webpack/webpack.config.dev.js",
"dist": "npm run clean:dist && npm run build",
"lint": "NODE_ENV=test eslint src --max-warnings 0",
"lint:fix": "NODE_ENV=test eslint src --fix",
"prepublish": "if in-publish; then npm run prepublish:compile; fi",
"prepublish:compile": "npm run lint && npm run test:coverage && npm run transpile:lib && npm run transpile:es && npm run dist",
"start": "npm run dev",
"test": "NODE_PATH=. BABEL_ENV=test ava",
"test:coverage": "nyc npm test",
"test:watch": "npm test -- --watch",
"transpile:es": "npm run clean:es && BABEL_ENV=es babel src --out-dir es",
"transpile:lib": "npm run clean:lib && BABEL_ENV=lib babel src --out-dir lib"
},
"types": "index.d.ts",
"version": "1.0.4"
}