-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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": "nabla.js",
"version": "1.0.0",
"description": "Reference implementation of mathematics and computer science algorithms & structures",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"coverage": "npx jest --coverage",
"build": "webpack --mode=production",
"buildDev": "webpack --mode=development",
"clean": "rm -r node_modules; rm package-lock.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedroth/nabla.js.git"
},
"keywords": [
"math",
"computer science",
"utility",
"educational",
"reference",
"dynamic array",
"linked lists",
"monads",
"functional",
"Vectors",
"Matrices",
"linear algebra",
"streams"
],
"author": "Pedroth",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pedroth/nabla.js/issues"
},
"homepage": "https://github.com/pedroth/nabla.js#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-jest": "^25.5.1",
"babel-loader": "^8.1.0",
"jest": "^24.9.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
}
}