-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 3.51 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"main": "lib/binding.js",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"@mmomtchev/node-pre-gyp-github": "^2.0.3",
"@stdlib/types": "^0.4.1",
"@types/ndarray": "^1.0.14",
"ndarray": "^1.0.19",
"node-addon-api": "^8.0.0"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "mocha",
"lint": "clang-format -i src/*.cc src/*.h && eslint lib/*.[tj]s test/*.[tj]s bench/*.[tj]s scripts/*.[tj]s",
"bench": "node bench/bench.js",
"doc": "documentation readme --section=API --config=documentation.yml src/*.cc lib/binding.js",
"web": "documentation build --config=website.yml src/*.cc lib/binding.js -f=html -o=doc",
"preversion": "npm run lint && npm run test && npm run doc && git add README.md",
"version": "git add package.json",
"postversion": "git push && git push --tags && node ./scripts/publish-packages.mjs && npm run web && node ./scripts/publish-docs.js ",
"gcov": "mkdir -p coverage && cd coverage && gcov -o ../build/Debug/obj.target/exprtk.js/src ../src/*",
"lcov": "npx c8 report --reporter=text-lcov > coverage/tests.lcov",
"codecov": "cd coverage && curl -s https://codecov.io/bash | bash",
"postpublish": "gh workflow run test-npm.yml -F version=$npm_package_version"
},
"name": "exprtk.js",
"version": "2.1.0",
"description": "JS Mathematical Expression Toolkit Library",
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/exprtk.js.git"
},
"keywords": [
"node.js",
"math",
"multithreading",
"async",
"TypedArray",
"parallel",
"openmp",
"mpi"
],
"author": "Momtchil Momtchev <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmomtchev/exprtk.js/issues"
},
"homepage": "https://github.com/mmomtchev/exprtk.js#readme",
"binary": {
"module_name": "exprtk.js",
"module_path": "./lib/binding/{platform}-{arch}",
"remote_path": "v{version}",
"host": "https://github.com/mmomtchev/exprtk.js/releases/download/",
"package_name": "{platform}-{arch}.tar.gz",
"hosting": {
"provider": "github",
"repo": "mmomtchev/exprtk.js"
}
},
"devDependencies": {
"@mmomtchev/documentation": "^14.0.1",
"@octokit/core": "^6.1.2",
"@stdlib/array": "^0.3.1",
"@stdlib/assert": "^0.3.1",
"@stdlib/bigint": "^0.3.1",
"@stdlib/blas": "^0.3.1",
"@stdlib/boolean": "^0.3.1",
"@stdlib/buffer": "^0.3.1",
"@stdlib/complex": "^0.3.1",
"@stdlib/constants": "^0.3.1",
"@stdlib/math": "^0.3.1",
"@stdlib/ndarray": "^0.3.1",
"@stdlib/number": "^0.3.1",
"@stdlib/object": "^0.3.1",
"@stdlib/regexp": "^0.3.1",
"@stdlib/strided": "^0.3.1",
"@stdlib/string": "^0.3.1",
"@stdlib/symbol": "^0.3.1",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"@types/ndarray-ops": "^1.2.7",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"benny": "^3.7.1",
"c8": "^10.0.0",
"chai": "^4.4.0",
"chai-as-promised": "^7.1.1",
"cwise": "^1.0.10",
"documentation-polyglot": "^1.0.1",
"eslint": "^8.56.0",
"eslint-plugin-array-func": "^4.0.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"gh-pages": "^6.1.1",
"mocha": "^10.2.0",
"ndarray-ops": "^1.2.2",
"node-gyp": "^10.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5"
}
}