-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "ext2fs",
"version": "4.2.3",
"description": "WASM bindings to libext2fs for cross-platform ext filesystem handling",
"author": "Balena Ltd. <[email protected]>",
"license": "Apache-2.0",
"main": "index.js",
"files": [
"index.js",
"lib/**/*.js",
"lib/**/*.wasm"
],
"scripts": {
"clean": "make clean && rm -rf ./emsdk",
"build": "bash -c 'source ./emsdk/emsdk_env.sh && make -j $(nproc)'",
"prepare": "./install-toolchain.sh && npm run build",
"pretest": "eslint --fix lib test src/pre.js",
"test": "mocha"
},
"devDependencies": {
"bluebird": "^3.7.2",
"eslint": "^8.31.0",
"file-disk": "^8.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.0"
},
"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"
},
"engines": {
"node": ">=16"
},
"versionist": {
"publishedAt": "2023-12-19T21:59:31.236Z"
}
}