forked from fastify/fast-json-stringify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "fast-json-stringify",
"version": "1.15.5",
"description": "Stringify your JSON at max speed",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"benchmark": "node bench.js",
"test:lint": "standard",
"test:typescript": "tsc --project ./test/types/tsconfig.json",
"test:unit": "tap -J test/*.test.js test/**/*.test.js",
"test": "npm run test:lint && npm run test:unit && npm run test:typescript",
"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 <hello@matteocollina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fast-json-stringify/issues"
},
"homepage": "https://github.com/fastify/fast-json-stringify#readme",
"devDependencies": {
"ajv-pack": "^0.3.1",
"benchmark": "^2.1.4",
"compile-json-stringify": "^0.1.2",
"is-my-json-valid": "^2.19.0",
"json-strify": "^0.1.7",
"long": "^4.0.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"standard": "^14.0.0",
"tap": "^12.6.5",
"tap-mocha-reporter": "^3.0.9",
"typescript": "^3.6.3",
"uglify-es": "^3.3.9"
},
"dependencies": {
"ajv": "^6.8.1",
"deepmerge": "^4.0.0"
},
"standard": {
"ignore": [
"schema-validator.js"
]
},
"greenkeeper": {
"ignore": [
"tap"
]
}
}