-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "@nephidream/game-theory-ts",
"version": "0.0.6",
"private": false,
"description": "Game theory library",
"main": "index.js",
"scripts": {
"prepublishOnly": "npm run test && npm run coverage && npm run build",
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "tsc",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WilliamChelman/game-theory-ts.git"
},
"author": "wchelman",
"license": "MIT",
"bugs": {
"url": "https://github.com/WilliamChelman/game-theory-ts/issues"
},
"homepage": "https://github.com/WilliamChelman/game-theory-ts#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.42",
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"husky": "^0.14.3",
"lint-staged": "^4.0.4",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"prettier": "^1.6.0",
"ts-node": "^3.3.0",
"tslib": "^1.7.1",
"tslint": "^5.6.0",
"tslint-config-prettier": "^1.3.0",
"typescript": "^2.5.1"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}