-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "outrun-game-core",
"version": "0.0.2",
"description": "Functional core for developing web games",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"test": "test"
},
"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"]
},
"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": {
"oni-types": "^0.0.8",
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"husky": "^0.14.3",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"react-test-renderer": "^16.4.0",
"ts-jest": "^22.4.6",
"typescript": "^2.8.3"
}
}