-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 840 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
{
"name": "adventure_capitalist",
"version": "1.0.0",
"description": "A clone of the popular AdVenture Capitalist game.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"development": "./node_modules/.bin/gulp development",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"build": "./node_modules/.bin/gulp"
},
"keywords": [
"game"
],
"author": "Jake Ben-Tovim",
"license": "ISC",
"devDependencies": {
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-shell": "^0.8.0",
"ts-loader": "^7.0.4",
"tslint": "^6.1.2",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^4.0.0-beta.2"
},
"dependencies": {
"pixi.js": "^5.2.4"
}
}