-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 897 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "nyo",
"version": "0.7.0",
"description": "A matrix library for JavaScript with ability to calculate determinants, transpose, inverse, RREF and other simple matrix operations",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "ava"
},
"keywords": [
"matrix",
"operations",
"rref",
"determinant",
"inverse",
"transpose",
"browser",
"node"
],
"author": "Abhijit Hota <abhihota025@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abhijit-hota/nyo.git"
},
"bugs": {
"url": "https://github.com/abhijit-hota/nyo/issues",
"email": "abhihota025@gmail.com"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"devDependencies": {
"ava": "3.15.0",
"eslint": "7.19.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"ava": {
"files": [
"tests/*.test.js"
]
}
}