-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1"
},
"name": "nmath",
"description": "A math library that has and compiles in runtime, optimized functions for matrix and vectors objects in n dimensions.",
"version": "1.0.0",
"main": "dest/nmath.node.js",
"dependencies": {
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-import": "^0.1.7",
"grunt-webpack": "^1.0.11",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NicolasNarvaez/nmath.js.git"
},
"keywords": [
"vector",
"matrix",
"math"
],
"author": "Nicolas Narvaez",
"license": "MIT",
"bugs": {
"url": "https://github.com/NicolasNarvaez/nmath.js/issues"
},
"homepage": "https://github.com/NicolasNarvaez/nmath.js#readme"
}