This repository has been archived by the owner on Feb 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.66 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
52
53
54
55
56
57
58
59
60
61
{
"name": "@gaia-project/engine",
"version": "4.5.2",
"description": "Javascript engine for project gaia",
"main": "dist/index.js",
"types": "index.ts",
"source": "index.ts",
"repository": "[email protected]:donkeytech/gaia-engine.git",
"publishConfig": {
"access": "public"
},
"files": [
"src",
"dist",
"index.d.ts",
"index.ts",
"tsconfig.json",
"wrapper.ts"
],
"scripts": {
"prepublishOnly": "npm run test && npm run clean && tsc",
"postpublish": "git push --follow-tags",
"build": "npm run clean && tsc",
"clean": "rm -Rf dist",
"lint": "eslint . --ext .ts",
"prettier": "npx --yes -- prettier --write .",
"prettier-check": "npx --yes -- prettier --check .",
"test": "mocha -r ts-node/register src/**/*.spec.ts src/*.spec.ts *.spec.ts"
},
"contributors": [
"coyotte508 <[email protected]>",
"rzulian <[email protected]>"
],
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"eventemitter3": "^3.1.0",
"hexagrid": "^2.1.0",
"lodash": "^4.17.15",
"seedrandom": "2.4.3",
"shuffle-seed": "1.1.6"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/lodash": "^4.14.149",
"@types/mocha": "^2.2.48",
"@types/node": "^14.0.14",
"@types/seedrandom": "^2.4.27",
"@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.2.0",
"ts-node": "^5.0.1",
"typescript": "^3.8.3"
}
}