-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.89 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
{
"name": "geom2.js",
"version": "0.6.7",
"description": "high performance 2d geometry library",
"main": "./dist/geom2.js",
"module": "./dist/geom2.module.js",
"umd": "./dist/geom2.umd.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "yarn run build:types && yarn run build:js && cpx ./dist/geom2.min.js ./example/",
"prepublishOnly": "yarn run build",
"doc": "typedoc --out docs --target es6 --theme minimal --mode file src",
"test": "jest",
"test:coverage": "jest --coverage",
"test:prod": "yarn run test -- --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alchemist0823/geom2.js.git"
},
"keywords": [
"geometry",
"library",
"2d",
"game",
"performance",
"math"
],
"author": "Alchemist0823 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alchemist0823/geom2.js/issues"
},
"homepage": "https://github.com/Alchemist0823/geom2.js#readme",
"dependencies": {
"@babel/runtime": "^7.5.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.2",
"cpx": "^1.5.0",
"jest": "^26.4.2",
"rollup": "^2.26.8",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^26.3.0",
"typedoc": "^0.14.2",
"typescript": "^4.0.2"
}
}