forked from atom/fs-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.23 KB
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
{
"name": "fs-admin",
"version": "0.19.0",
"description": "Manipulate files with escalated privileges",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "standard && mocha",
"install": "prebuild-install || npm run build",
"build": "node-gyp rebuild",
"prebuild-napi-x64": "prebuild -t 3 -r napi -a x64 --strip",
"prebuild-napi-ia32": "prebuild -t 3 -r napi -a ia32 --strip",
"prebuild-napi-arm64": "prebuild -t 3 -r napi -a arm64 --strip",
"upload": "node ./script/upload.js"
},
"keywords": [
"file",
"system",
"privileges"
],
"author": "Max Brunsfeld",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atom/fs-admin.git"
},
"bugs": {
"url": "https://github.com/atom/fs-admin/issues"
},
"dependencies": {
"node-addon-api": "^4.2.0",
"prebuild-install": "^6.0.0"
},
"devDependencies": {
"mocha": "^8.0.1",
"node-gyp": "^8.0.0",
"prebuild": "^11.0.0",
"standard": "^16.0.1",
"temp": "^0.9.0"
},
"binary": {
"napi_versions": [
3
]
},
"config": {
"runtime": "napi",
"target": 3
},
"standard": {
"globals": [
"beforeEach",
"describe",
"it"
]
}
}