forked from mongodb-js/zstd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.29 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
{
"name": "@mongodb-js/zstd",
"version": "1.2.0",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/mongodb-js/zstd",
"napi": {
"name": "zstd",
"package": {
"name": "@mongodb-js/zstd"
},
"triples": {
"defaults": true,
"additional": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-unknown-linux-musl"
]
}
},
"files": [
"index.d.ts",
"index.js"
],
"license": "Apache-2.0",
"devDependencies": {
"@napi-rs/cli": "^2.18.0",
"chai": "^4.3.10",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"standard-version": "^9.5.0"
},
"engines": {
"node": ">= 10"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"semi": true,
"trailingComma": "none",
"singleQuote": true,
"arrowParens": "avoid"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"format:js": "prettier --config ./package.json --write *.js",
"format:rs": "cargo fmt",
"prepublishOnly": "napi prepublish -t npm",
"release": "standard-version -i HISTORY.md",
"test": "mocha --recursive test/",
"version": "napi version"
}
}