-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "gdal-exprtk",
"version": "2.0.0",
"description": "ExprTk.js plugin for gdal-async",
"main": "index.js",
"bin": {
"gdal_calc.js": "./bin/gdal_calc.js"
},
"scripts": {
"test": "mocha",
"build": "npm run build:lib && npm run build:doc",
"build:lib": "npx yatag",
"build:doc": "documentation readme --section=API --config=documentation.yml lib/*.js src/*.cc",
"install": "node-pre-gyp install --fallback-to-build -j max",
"c8": "npx c8 mocha",
"lcov": "npx c8 report --reporter=text-lcov > coverage/tests.lcov",
"gcov": "mkdir -p coverage && cd coverage && gcov -o ../build/Debug/obj.target/gdal-exprtk/src ../src/*",
"codecov": "curl -s https://codecov.io/bash | bash",
"preversion": "npm run build:lib && npm run test",
"version": "npm run build:doc && git add package.json README.md index.d.ts",
"postversion": "git push && git push --tags && node ./scripts/publish-packages.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/gdal-exprtk.git"
},
"keywords": [
"gdal",
"exprtk",
"async"
],
"author": {
"name": "Momtchil Momtchev",
"url": "https://github.com/mmomtchev",
"email": "momtchil@momtchev.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mmomtchev/gdal-exprtk/issues"
},
"homepage": "https://github.com/mmomtchev/gdal-exprtk#readme",
"binary": {
"module_name": "gdal-exprtk",
"module_path": "./lib/binding/{platform}-{arch}",
"remote_path": "v{version}",
"host": "https://github.com/mmomtchev/gdal-exprtk/releases/download/",
"package_name": "{platform}-{arch}.tar.gz",
"hosting": {
"provider": "github",
"repo": "mmomtchev/gdal-exprtk"
}
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.8",
"@mmomtchev/node-pre-gyp-github": "^2.0.6",
"@types/node": ">=12.0.0",
"commander": "^13.0.0",
"documentation-polyglot": "^1.0.1",
"exprtk.js": "^2.0.0",
"gdal-async": ">=3.5.0-alpha.1",
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"@mmomtchev/documentation": "^14.0.0",
"@types/chai": "^5.0.0",
"@types/chai-as-promised": "^8.0.0",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"c8": "^10.0.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.9.0",
"eslint-plugin-array-func": "^5.0.1",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^11.0.1",
"ts-node": "^10.5.0",
"typescript": "^5.4.5",
"yatag": "^1.2.0"
},
"engines": {
"node": ">=16"
}
}