-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 886 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
{
"name": "universitysim",
"version": "1.0.0",
"description": "The University Campus Simulation Game",
"main": "index.js",
"dependencies": {
"lodash": "^4.17.19"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"husky": "^3.0.9",
"mocha": "^6.2.2",
"eslint": "^6.5.1",
"regenerator-runtime": "^0.13.3"
},
"scripts": {
"lint": "eslint assets/ --fix && eslint test/ --fix",
"test": "cross-env NODE_ENV=production NODE_PATH=./:./assets/Scripts:./assets/Scripts/GameLogic:./assets/Scripts/GameLogic/Satisfactions mocha"
},
"repository": {
"type": "git",
"url": "[email protected]:hehao/universitysim.git"
},
"author": "Hao He, Tong Pai, Mingyang Liao",
"license": "MIT License",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test"
}
}
}