-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "constellation",
"version": "1.0.1",
"description": "A grid geometry toolkit for controlling 2D sprite motion.",
"homepage": "http://gmac.github.io/constellation-js",
"url": "http://gmac.github.io/constellation-js",
"keywords": [
"geometry",
"grid",
"astar",
"a-star",
"pathfinding",
"2d",
"sprite",
"motion",
"animation"
],
"author": {
"name": "Greg MacWilliam",
"email": "[email protected]",
"web": "https://github.com/gmac"
},
"repository": {
"type": "git",
"url": "https://github.com/gmac/constellation-js"
},
"github": "https://github.com/gmac/constellation-js",
"scripts": {
"build": "rollup -c --format umd --name 'Constellation'",
"release": "yarn build && npm publish",
"test": "jest --no-watchman --forceExit"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"files": [
"dist",
"package.json"
],
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"rollup": "^2.39.1",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
}
}