-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
{
"name": "kld-affine",
"version": "2.1.1",
"description": "A collection of classes used in affine geometry",
"author": {
"name": "Kevin Lindsey",
"email": "[email protected]"
},
"contributors": [
"Brett Zamir"
],
"license": "BSD-3-Clause",
"bugs": "https://github.com/thelonious/kld-affine/issues",
"homepage": "https://github.com/thelonious/kld-affine",
"repository": {
"type": "git",
"url": "git://github.com/thelonious/kld-affine.git"
},
"main": "dist/index-umd.js",
"module": "index.js",
"browserslist": [
"cover 100%"
],
"scripts": {
"eslint": "eslint .",
"rollup": "rollup -c",
"test": "npm run eslint && npm run rollup && mocha --require @babel/register",
"start": "static -p 8055",
"build-docs": "rm -rf docs/jsdoc/*;jsdoc --pedantic -c docs/jsdoc-config.js .",
"open-docs": "opn http://localhost:8055/docs/jsdoc/ && npm start"
},
"keywords": [
"affine",
"point",
"vector",
"matrix"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"@mysticatea/eslint-plugin": "^10.0.3",
"eslint": "^5.16.0",
"eslint-config-ash-nazg": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-compat": "^3.1.1",
"eslint-plugin-eslint-comments": "^3.1.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsdoc": "^4.8.3",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-no-use-extend-native": "^0.4.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-unicorn": "^8.0.2",
"jsdoc": "^3.6.1",
"mocha": "^6.1.4",
"node-static": "^0.7.11",
"opn-cli": "^4.1.0",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-terser": "^4.0.4",
"typescript": "^3.4.5"
},
"engines": {
"node": ">= 10.15.3"
},
"types": "./types/index.d.ts"
}