-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.63 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
{
"private": false,
"name": "@kjerandp/linear-algebra",
"version": "1.0.5",
"description": "Math library for doing basic linear algebra operations",
"repository": "https://github.com/kjerandp/linear-algebra",
"author": "Kjerand Pedersen",
"license": "MIT",
"keywords": [
"vector",
"math",
"matrix",
"matricies",
"linear",
"algebra",
"transformations",
"2d",
"3d",
"4d"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/linear-algebra.min.js",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"expect": "^24.8.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-uglify": "^6.0.2"
},
"scripts": {
"build": "node node_modules/.bin/rollup -c",
"dev": "node node_modules/.bin/rollup -c -w",
"coverage": "NODE_ENV=test npx nyc --reporter=html --reporter=text mocha --require @babel/register",
"test": "NODE_ENV=test npx mocha --require @babel/register",
"test:watch": "NODE_ENV=test npx mocha --require @babel/register --reporter min --watch",
"lint": "npx eslint src test tools",
"prepub": "npm run build",
"pub": "npm publish --access=public",
"docs": "./node_modules/.bin/esdoc"
},
"files": [
"dist"
]
}