-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
executable file
·47 lines (47 loc) · 1.11 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
{
"name": "algebrite",
"//": "also change the version in the Algebrite variable at the top of defs file",
"version": "1.3.1",
"description": "Computer Algebra System in TypeScript",
"main": "dist/algebrite.js",
"module": "dist/index.js",
"browser": "dist/algebrite.bundle-for-browser-min.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "bazel build //...",
"test": "bazel test //..."
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidedc/Algebrite.git"
},
"keywords": [
"cas",
"algebra",
"computer",
"algebra",
"system",
"eigenmath",
"math",
"symbolic"
],
"author": "Davide Della Casa",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidedc/Algebrite/issues"
},
"homepage": "https://github.com/davidedc/Algebrite#readme",
"dependencies": {
"@types/node": "^14.0.14",
"big-integer": "^1.6.32"
},
"devDependencies": {
"@bazel/bazelisk": "latest",
"@bazel/buildifier": "latest",
"@bazel/esbuild": "^4.4.6",
"@bazel/typescript": "4.4.6",
"typescript": "^3.9.6"
}
}