-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
106 lines (106 loc) · 2.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "sylvester",
"description": "node.js implementation of James Coglan's \"Sylvester\" matrix math library.",
"version": "0.0.22",
"engines": {
"node": ">=0.2.6"
},
"scripts": {
"prepublishOnly": "npm run build:dist",
"build:dist": "babel src -d dist",
"build:doc": "rimraf doc-output && esdoc -c esdoc.json",
"test:cover": "nyc mocha --opts mocha.opts",
"test:fmt": "prettier --list-different \"{src,test}/**/*.{js,ts}\" \"*.md\"",
"test:unit": "mocha --opts mocha.opts",
"test:lint": "echo todo",
"build": "tsc",
"docs:showDiagramKeys": "cat dist/test/docs/recorded-tests.json | jq -r '. | keys | .[]' | sort",
"docs": "npm run build && npm run test:unit && node dist/test/docs/generate",
"clean": "rimraf dist doc",
"watch": "npm run build -- --watch",
"test": "npm run build && npm-run-all --parallel --silent test:unit test:lint test:fmt",
"fmt": "prettier --write \"{src,test}/**/*.{js,ts}\" \"*.md\" && npm run test:lint -- --fix"
},
"author": "Chris Umbel <[email protected]>",
"license": "MIT",
"keywords": [
"matrix",
"vector",
"linear",
"line",
"algebra",
"matrices"
],
"main": "./dist/src/index.js",
"maintainers": [
{
"name": "Chris Umbel",
"email": "[email protected]",
"web": "http://www.chrisumbel.com"
},
{
"name": "Rob Ellis",
"email": "[email protected]"
},
{
"name": "Connor Peet",
"email": "[email protected]"
}
],
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/chai": "^4.2.7",
"@types/fs-extra": "^8.0.1",
"@types/highlight.js": "^9.12.3",
"@types/katex": "^0.11.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.20",
"@types/prettier": "^1.19.0",
"benchmark": "^2.1.4",
"bluebird": "^3.4.7",
"chai": "^3.5.0",
"esdoc": "^1.1.0",
"fs-extra": "^8.1.0",
"highlight.js": "^10.4.1",
"katex": "^0.11.1",
"mocha": "^6.2.2",
"npm-run-all": "^4.0.0",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.16",
"typedoc": "^0.15.6",
"typescript": "^3.7.3"
},
"browser": {
"lapack": false
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"nyc": {
"all": true,
"instrument": true,
"include": [
"dist/**/*.js",
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"cobertura",
"text-summary",
"html"
],
"exclude": [
"**/*.test.{ts,js}"
]
},
"dependencies": {
"minimist": "1.2.6",
"nth-check": "2.0.1"
}
}