-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.52 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
{
"name": "affineplane",
"version": "2.19.0",
"description": "Affine geometry library for 2D and 3D spaces",
"keywords": [
"affine",
"transformation",
"plane",
"2d",
"3d",
"space",
"geometry",
"metric",
"tensor",
"scale",
"rotate",
"translate",
"estimator",
"rigid",
"nonreflective",
"similarity",
"helmert",
"perspective",
"projection",
"segment",
"line",
"ray"
],
"homepage": "https://github.com/axelpale/affineplane",
"main": "index.js",
"author": {
"name": "Akseli Palen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/axelpale/affineplane.git"
},
"license": "MIT",
"devDependencies": {
"async": "^3.2.5",
"genversion": "^3.2.0",
"nodemon": "^3.1.4",
"standard": "^17.1.0",
"tap-arc": "^1.2.2",
"tape": "^5.8.1",
"yamdog": "^2.1.0"
},
"scripts": {
"lint": "standard index.js 'lib/**/*.js' 'test/**/*.js'",
"lint:fix": "standard --fix index.js 'lib/**/*.js' 'test/**/*.js'",
"test": "npm run lint && npm run test:unit",
"test:unit": "tape test/index.test.js | tap-arc --pessimistic",
"test:watch": "nodemon -q --watch lib --watch test --exec 'npm --silent test'",
"gv": "genversion lib/version.js",
"build:docs": "node docs/generate.js",
"build:standalone": "browserify index.js --standalone affineplane -o affineplane.js",
"release": "npm run gv && npm run test && npm run build:docs && npm publish"
}
}