-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 942 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": "set-sparse",
"version": "2.0.0",
"description": "A simple function that sets the FSCTL_SET_SPARSE Windows flag to save space in sparse files.",
"main": "./src/index.js",
"scripts": {
"build": "node-gyp rebuild --release",
"postbuild": "cp ./build/Release/sparse.node ./src/sparse.node",
"test": "tap --comments --no-coverage -R spec"
},
"cpu": [
"x64"
],
"engine": {
"node": ">=10.2"
},
"binary": {
"napi_versions": [
3
]
},
"keywords": [
"windows",
"sparse",
"napi"
],
"author": "Evan Verworn <evan@verworn.ca>",
"license": "MIT",
"devDependencies": {
"fswin": "^3.21.107",
"node-gyp": "^7.1.2",
"tap": "^14.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/xori/set-sparse.git"
},
"bugs": {
"url": "https://github.com/xori/set-sparse/issues"
},
"homepage": "https://github.com/xori/set-sparse"
}