-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.93 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
{
"name": "overlap-area",
"version": "1.1.0",
"description": "Find the Overlap Area.",
"main": "./dist/overlap-area.cjs.js",
"module": "./dist/overlap-area.esm.js",
"sideEffects": false,
"types": "declaration/index.d.ts",
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c && npm run declaration && print-sizes ./dist",
"declaration": "rm -rf declaration && tsc -p tsconfig.declaration.json",
"doc": "rm -rf ./doc && jsdoc -c jsdoc.json",
"test": "jest --watchAll",
"coverage": "jest --coverage && print-coveralls --sort=desc",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prerelease": "npm run build && npm run doc && prerelease --dirs=dist,doc",
"deploy": "gh-pages -d ./demo --dest=./ --add --remote origin",
"release": "npm run build && npm run doc && release --dirs=dist,doc",
"release:init": "npm run build && npm run doc && release -i --dirs=dist,doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daybrush/overlap-area.git"
},
"author": "Daybrush",
"license": "MIT",
"keywords": [
"overlap",
"overlapping",
"collision",
"area",
"points"
],
"bugs": {
"url": "https://github.com/daybrush/overlap-area/issues"
},
"homepage": "https://github.com/daybrush/overlap-area#readme",
"dependencies": {
"@daybrush/utils": "^1.7.1"
},
"devDependencies": {
"@daybrush/builder": "^0.1.2",
"@daybrush/jsdoc": "^0.3.8",
"@daybrush/release": "^0.2.4",
"@types/jest": "^24.0.13",
"coveralls": "^3.1.0",
"daybrush-jsdoc-template": "^1.6.0",
"jest": "^24.8.0",
"print-coveralls": "^1.2.2",
"print-sizes": "^0.1.0",
"pvu": "^0.4.1",
"ts-jest": "^24.0.2",
"tslib": "^2.0.3",
"typescript": "^4.5 <4.6"
}
}