-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "vectory",
"version": "1.2.3",
"description": "High performant, DevTools friendly, Crankshaft tolerant 2d vectors",
"keywords": [
"math",
"vector",
"2d"
],
"license": "MIT",
"homepage": "https://github.com/broadsw0rd/vectory",
"repository": {
"type": "git",
"url": "https://github.com/broadsw0rd/vectory"
},
"bugs": {
"url": "https://github.com/broadsw0rd/vectory/issues",
"email": "[email protected]"
},
"author": {
"name": "Vladimir Bykov",
"email": "[email protected]",
"url": "https://github.com/broadsw0rd"
},
"files": [
"dist"
],
"main": "dist/vectory.umd.js",
"module": "dist/vectory.js",
"devDependencies": {
"benchmark": "2.1.4",
"coveralls": "3.0.4",
"log-symbols": "3.0.0",
"minimist": "1.2.0",
"nyc": "14.1.1",
"rollup": "1.16.1",
"rollup-plugin-commonjs": "10.0.0",
"rollup-plugin-node-resolve": "5.0.3",
"snazzy": "8.0.0",
"standard": "12.0.1",
"tap-diff": "0.1.1",
"tape": "4.10.2",
"uglify-js": "3.6.0"
},
"dependencies": {
"number-epsilon": "1.0.3"
},
"standard": {
"ignore": [
"src/index.js"
]
},
"scripts": {
"check": "standard src/*.js test/*.js bench/*.js bench/**/*.js | snazzy",
"build": "rollup -c",
"test": "nyc --reporter=html --reporter=lcov --reporter=text tape test/index.test.js",
"bench": "node ./bench/index.js",
"min": "uglifyjs dist/vectory.umd.js -c -m > dist/vectory.min.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}