forked from balena-io-modules/node-ext2fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.7 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
{
"name": "ext2fs",
"version": "2.0.4",
"description": "NodeJS native bindings to the libext2fs for cross-platform ext filesystem handling",
"author": "Petros Angelatos <[email protected]>",
"contributors": [
"Alexis Svinartchouk <[email protected]>",
"Petros Angelatos <[email protected]>"
],
"license": "Apache-2.0",
"main": "index.js",
"gypfile": true,
"scripts": {
"upload": "cross-env prebuild -t $npm_config_node_version -u $NODE_PRE_GYP_GITHUB_TOKEN --include-regex \"bindings\\.node$\"",
"upload-win": "prebuild -t %npm_config_node_version% -u %NODE_PRE_GYP_GITHUB_TOKEN% --include-regex \"bindings\\.node$\"",
"upload-electron": "cross-env prebuild --runtime electron -t 2.0.3 -t 1.7.15 -u $NODE_PRE_GYP_GITHUB_TOKEN --include-regex \"bindings\\.node$\"",
"upload-electron-win": "prebuild --runtime electron -t 2.0.3 -t 1.7.15 -u %NODE_PRE_GYP_GITHUB_TOKEN% --include-regex \"bindings\\.node$\"",
"build": "node-gyp rebuild",
"pretest": "eslint lib test",
"test": "mocha",
"install": "prebuild-install || node-gyp rebuild"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.14.0",
"prebuild-install": "^5.2.1"
},
"devDependencies": {
"bluebird": "^3.7.2",
"cross-env": "^5.2.0",
"eslint": "^7.5.0",
"file-disk": "^8.0.0",
"mocha": "^5.2.0",
"prebuild": "^8.1.2"
},
"homepage": "https://github.com/balena-io/node-ext2fs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io/node-ext2fs.git"
},
"keywords": [
"extfs",
"ext",
"ext2",
"ext3",
"ext4",
"filesystem",
"fs"
],
"bugs": {
"url": "https://github.com/balena-io/node-ext2fs/issues"
}
}