-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.69 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "nhai",
"version": "0.0.0",
"description": "NetHack AI based on Concept Reinforcement Learning (CRL)",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=14"
},
"scripts": {
"ready": "gulp ready",
"dev:test": "gulp dev:test",
"dev:docs": "gulp dev:docs",
"dev:coverage": "gulp dev:coverage",
"dev:lint": "gulp dev:lint",
"test": "gulp test",
"test:quiet": "gulp test:quiet",
"lint": "gulp lint",
"coverage": "gulp coverage",
"docs": "gulp docs",
"experiment": "plop --plopfile assets/plop/plopfile.js --dest experiments"
},
"author": "Adam Powers <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/apowers313/nhai"
},
"license": "UNLICENSED",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"browser-sync": "^2.26.13",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"docdash": "^1.2.0",
"eslint": "^7.13.0",
"eslint-plugin-jsdoc": "^30.7.6",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-old-c-programmer": "^1.0.1",
"gh-pages": "^3.1.0",
"gulp": "^4.0.2",
"gulp-eslint7": "^0.3.0",
"gulp-jsdoc3": "^3.0.0",
"gulp-mocha": "^7.0.2",
"gulp-nodemon": "^2.5.0",
"husky": "^4.3.0",
"is-ci": "^2.0.0",
"jsdoc": "^3.6.6",
"magicpatch-test": "^1.1.2",
"mocha": "^9.1.3",
"mockery": "^2.1.0",
"node-plop": "^0.26.2",
"npm-watch": "^0.7.0",
"nyc": "^15.1.0",
"pinst": "^2.1.1",
"plop": "^2.7.4",
"promise-events": "^0.2.2",
"sinon": "^9.2.1",
"standard-version": "^9.0.0",
"std-mocks": "^1.0.1",
"ts-mocha": "^9.0.2",
"tui-jsdoc-template": "^1.2.2",
"typescript": "^4.5.5"
},
"dependencies": {
"@neth4ck/neth4ck": "^1.0.4",
"ajv": "^6.12.5",
"bunyan": "^1.8.14",
"bunyan-debug-stream": "^2.0.0",
"cosmiconfig": "^7.0.0",
"handlebars": "^4.7.7",
"random": "^2.2.0",
"redisgraph.js": "^2.3.0",
"seedrandom": "^3.0.5",
"ts-node": "^10.4.0",
"uuid": "^8.3.2"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "gulp test:quiet",
"pre-push": "gulp ready"
}
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}