-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.99 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
66
67
68
69
70
71
72
73
74
{
"name": "outrun-content-pipeline",
"version": "0.0.1",
"description": "Functional core for developing web games",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"test": "test"
},
"bin": {
"content": "./cli.js"
},
"scripts": {
"precommit": "pretty-quick --staged",
"build": "tsc",
"test": "jest --coverage",
"coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/outrunlabs/outrun-game-core.git"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironmentOptions": {
"resources": "usable"
}
},
"author": "Outrun Labs, LLC",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/outrunlabs/outrun-game-core/issues"
},
"homepage": "https://github.com/outrunlabs/outrun-game-core#readme",
"dependencies": {
"@types/minimist": "^1.2.0",
"canvas-prebuilt": "^1.6.5-prerelease.1",
"glob": "^7.1.2",
"jsdom": "^11.11.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"oni-types": "^0.0.8",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"redux": "^4.0.0",
"text-encoding": "^0.6.4"
},
"devDependencies": {
"@types/glob": "^5.0.35",
"@types/jest": "^22.2.3",
"@types/jsdom": "^11.0.4",
"@types/mkdirp": "^0.5.2",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/redux": "^3.6.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"ts-jest": "^22.4.6",
"typescript": "^2.8.3"
}
}