-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
42 lines (42 loc) · 966 Bytes
/
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
{
"name": "simdjson",
"version": "0.9.2",
"description": "Parsing gigabytes of JSON per second",
"main": "index.js",
"types": "index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"gypfile": true,
"scripts": {
"benchmark": "node benchmark/benchmark.js",
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"test": "mocha tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luizperes/simdjson_nodejs.git"
},
"keywords": [
"json",
"parser",
"simd",
"jsonparser",
"parsing"
],
"author": "Luiz Peres",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/luizperes/simdjson_nodejs/issues"
},
"homepage": "https://github.com/luizperes/simdjson_nodejs#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"mocha": "^8.1.3",
"node-gyp": "^6.1.0"
},
"dependencies": {
"node-addon-api": "^2.0.0"
}
}