-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 969 Bytes
/
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
{
"name": "gine",
"version": "4.1.1",
"description": "Gine game engine.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"game",
"gamedev",
"typescript",
"engine"
],
"scripts": {
"start": "npm run build",
"build": "npm run lint && rm -rf dist/ && tsc && echo 'Build completed, check your dist/ folder!'",
"lint": "tslint -p tsconfig.json",
"test": "jest"
},
"dependencies": {
"es6-shim": "^0.35.6",
"rxjs": "^6.6.7"
},
"peerDependencies": {
"typescript": "^3.1.6",
"rxjs": "^6.3.3"
},
"devDependencies": {
"@types/jest": "24.0.18",
"http-server": "^0.11.1",
"jest": "24.9.0",
"parcel": "^2.0.0-beta.2",
"parcel-reporter-static-files-copy": "^1.2.2",
"parcel-plugin-typescript": "^1.0.0",
"ts-jest": "24.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"typescript": "^3.9.9"
},
"author": "Bjorn 'Bjeaurn'",
"license": "ISC"
}