-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "slow-json-stringify",
"version": "2.0.1",
"description": "The slowest JSON stringifier in the galaxy (:",
"source": "src/sjs.mjs",
"main": "dist/sjs.js",
"module": "dist/sjs.mjs",
"unpkg": "dist/sjs.umd.js",
"types": "index.d.ts",
"scripts": {
"build": "microbundle",
"build:dev": "microbundle watch",
"lint": "eslint src/*.mjs test/*.js",
"lint:fix": "eslint src/*.mjs test/*.js --fix",
"test": "npm run build && mocha --timeout 10000 --recursive test",
"ship": "rm -r dist && npm run build && npm publish",
"benchmark": "cd benchmark && sh run.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucagez/slow-json-stringify.git"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"fast-json-stringify": "^1.17.0",
"microbundle": "^0.11.0",
"mocha": "^6.1.4"
},
"keywords": [
"stringify",
"json",
"deterministic",
"safe",
"serialize",
"hash",
"stringification",
"fast"
],
"author": "Luca Gesmundo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucagez/slow-json-stringify/issues"
},
"homepage": "https://github.com/lucagez/slow-json-stringify#readme"
}