-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 928 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 928 Bytes
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
{
"name": "fizzbuzz-js",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/ajdnik/fizzbuzz-js#readme",
"bugs": {
"url": "https://github.com/ajdnik/fizzbuzz-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajdnik/fizzbuzz-js.git"
},
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "index.js",
"scripts": {
"build:rust": "napi build --manifest-path fizzbuzz-napi/Cargo.toml --release --no-js --no-dts-header -o .",
"benchmark": "npm run build:rust && node --expose-gc bench.mjs",
"test": "node --test fizzbuzz.test.mjs",
"profile:opt": "node --trace-opt --trace-deopt profile.mjs",
"test:rust": "cargo test --manifest-path fizzbuzz-napi/Cargo.toml"
},
"napi": {
"binaryName": "fizzbuzz_napi"
},
"dependencies": {
"mitata": "^1.0.34"
},
"devDependencies": {
"@napi-rs/cli": "^3.5.1"
}
}