-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "silmarils",
"description": "Utilities for building 2d games",
"version": "0.8.0",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"repository": "[email protected]:danprince/silmarils.git",
"author": "danprince <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf *.js *.d.ts *.d.ts.map",
"docs": "typedoc --tsconfig tsconfig.build.json --out docs && cp assets/favicon.ico docs && cp -r assets docs",
"prepublishOnly": "yarn test && yarn clean && yarn build",
"postpublish": "yarn clean"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"jest": "^25.3.0",
"ts-jest": "^25.3.1",
"typedoc": "^0.17.6",
"typescript": "^3.8.3"
},
"exports": {
".": "./index.js",
"./angle": "./angle.js",
"./array-2d": "./array-2d.js",
"./canvas": "./canvas.js",
"./circle": "./circle.js",
"./direction": "./direction.js",
"./keyboard": "./keyboard.js",
"./line": "./line.js",
"./mouse": "./mouse.js",
"./point": "./point.js",
"./prng": "./prng.js",
"./rectangle": "./rectangle.js",
"./rng": "./rng.js",
"./uid": "./uid.js",
"./vector": "./vector.js",
"./easing": "./easing.js"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"include": [
"**/*.test.ts"
]
}
}
}
}