-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.29 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": "take6-engine",
"version": "0.5.1",
"description": "An engine for a game similar to 6nimmt",
"main": "dist/index.js",
"types": "index.ts",
"source": "index.ts",
"repository": "git@github.com:donkeytech/take6-engine.git",
"publishConfig": {
"access": "public"
},
"author": "coyotte508",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run test && npm run clean && tsc",
"build": "npm run clean && tsc",
"clean": "rm -Rf dist",
"lint": "eslint . --ext .ts",
"test": "mocha -r ts-node/register src/**/*.spec.ts src/*.spec.ts"
},
"dependencies": {
"@types/lodash": "^4.14.149",
"@types/seedrandom": "^2.4.27",
"lodash": "^4.17.15",
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"chai": "^4.1.2",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^5.0.4",
"ts-node": "^5.0.1",
"typescript": "^3.8.3"
},
"files": [
"index.ts",
"wrapper.ts",
"src",
"dist",
"tsconfig.json"
]
}