UNPKG

916 BJSONView Raw
1{
2 "name": "algebra",
3 "homepage": "http://g14n.info/algebra",
4 "author": {
5 "name": "fibo",
6 "url": "http://g14n.info"
7 },
8 "version": "0.4.0",
9 "description": "Vectors, Matrices, Tensors",
10 "main": "index.js",
11 "scripts": {
12 "test": "mocha --recursive --bail --require should --reporter min",
13 "build": "browserify -s algebra -e index.js -o dist/algebra.js"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git://github.com/fibo/algebra.git"
18 },
19 "keywords": [
20 "algebra",
21 "matrix",
22 "vector",
23 "tensor",
24 "math"
25 ],
26 "license": [
27 {
28 "type": "MIT",
29 "url": "http://g14n.info/mit-license"
30 }
31 ],
32 "devDependencies": {
33 "browserify": "^8.1.3",
34 "mocha": "~1.20.1",
35 "should": "~4.0.4"
36 },
37 "engines": {
38 "node": ">=0.8"
39 },
40 "readmeFilename": "README.md",
41 "dependencies": {
42 "inherits": "~2.0.1",
43 "strict-mode": "~0.1.4"
44 }
45}