-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 891 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
{
"name": "@glazier/vector-js",
"version": "1.2.1",
"description": "An implementation of mathematical vectors in JavaScript",
"main": "src/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spikeburton/vector-js.git"
},
"keywords": [
"vector-js",
"vector",
"vectors",
"javascript",
"math",
"mathematics",
"linear algebra",
"array",
"array normal"
],
"contributors": [
"Spike Burton <[email protected]> (https://github.com/spikeburton)",
"Allen Woods <[email protected]> (https://github.com/allen-woods)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/spikeburton/vector-js/issues"
},
"homepage": "https://github.com/spikeburton/vector-js#readme",
"devDependencies": {
"jest": "^24.9.0",
"prettier": "^1.18.2"
}
}