forked from RaghavCodeHub/matrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 964 Bytes
/
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
{
"name": "matrix-js",
"version": "1.4.0",
"description": "A Javascript Library to perform basic matrix operations using the functional nature of Javascript",
"main": "lib",
"directories": {
"test": "test"
},
"scripts": {
"test": "node_modules/.bin/mocha --recursive --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raghavgujjar/matrix.git"
},
"keywords": [
"matrix",
"linear",
"algebra"
],
"author": "Raghavendra Ravikumar <raghavendra.ravikumar@gmail.com>",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/raghavgujjar/matrix/blob/master/LICENSE-MIT"
}
],
"bugs": {
"url": "https://github.com/raghavgujjar/matrix/issues"
},
"homepage": "https://github.com/raghavgujjar/matrix#readme",
"devDependencies": {
"mocha": "^2.4.5"
}
}