forked from fastify/fast-json-stringify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "fast-json-stringify",
"version": "1.12.0",
"description": "Stringify your JSON at max speed",
"main": "index.js",
"scripts": {
"benchmark": "node bench.js",
"test:lint": "standard",
"test:unit": "tap -J test/*.test.js test/**/*.test.js",
"test": "npm run test:lint && npm run test:unit",
"test:report": "npm run test:unit | tee out.tap",
"test:reporter": "tap-mocha-reporter xunit < out.tap > test/junit-testresults.xml"
},
"precommit": "test",
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fast-json-stringify.git"
},
"keywords": [
"json",
"stringify",
"schema",
"fast"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fast-json-stringify/issues"
},
"homepage": "https://github.com/fastify/fast-json-stringify#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"is-my-json-valid": "^2.19.0",
"long": "^4.0.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.0",
"standard": "^12.0.1",
"tap": "^12.5.1",
"tap-mocha-reporter": "^3.0.9",
"uglify-es": "^3.3.9"
},
"dependencies": {
"ajv": "^6.8.1",
"deepmerge": "^3.0.0"
}
}