forked from openzim/node-libzim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.65 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
57
58
59
60
61
62
63
64
{
"name": "@openzim/libzim",
"main": "dist/index.js",
"types": "dist/index.d.js",
"version": "2.4.4",
"description": "Libzim bindings for NodeJS",
"scripts": {
"clean": "rm -rf dist build/native/build",
"tsc": "tsc",
"prepare": "mkdir -p dist/ && cp -v src/index.js src/index.d.ts dist/",
"codecov": "nyc --reporter=lcov npm t",
"install": "npm run download && node-gyp rebuild -v && npm run bundle",
"build": "node-gyp rebuild -v && npm run bundle",
"download": "node ./download-libzim.js",
"bundle": "node ./bundle-libzim.js",
"test": "jest",
"test-mem-leak": "node -r ts-node/register test/makeLargeZim.ts"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"test/*",
"node_modules"
]
},
"author": "Joseph Reeve",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/openzim/node-libzim.git"
},
"bugs": {
"url": "https://github.com/openzim/node-libzim/issues"
},
"homepage": "https://github.com/openzim/node-libzim#readme",
"gypfile": true,
"dependencies": {
"@types/bindings": "^1.5.1",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"axios": "^0.27.2",
"bindings": "^1.5.0",
"dotenv": "^16.0.1",
"exec-then": "^1.3.1",
"mkdirp": "^1.0.4",
"node-addon-api": "^5.0.0",
"node-gyp": "^9.1.0",
"tqdm": "^2.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"jest": "^28.1.3",
"nyc": "^15.1.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts"
}
}