forked from BeTomorrow/ReImproveJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "reimprovejs",
"version": "0.0.3",
"private": false,
"description": "A library using TensorFlow.js for Deep Reinforcement Learning",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Pravez/ReImproveJS.git"
},
"author": "Paul Breton <[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pravez/ReImproveJS/issues"
},
"homepage": "https://github.com/Pravez/ReImproveJS#readme",
"dependencies": {
"@tensorflow/tfjs": "^1.2.1",
"@types/lodash": "^4.14.109",
"@types/uuid": "^3.4.3",
"lodash": "^4.17.10",
"uuid": "^3.2.1"
},
"scripts": {
"setup": "npm install",
"clean": "rm -rf node_modules/ dist/",
"doc": "typedoc --theme markdown --out ./docs/ ./src/ --excludeExternals --externalPattern \"**/node_modules/**\" --ignoreCompilerErrors --name \"ReImproveJS\" --mode \"file\" --target ES5 --includeDeclarations",
"test": "mocha --reporter spec --compilers ts:ts-node/register 'test/*.spec.ts' --timeout 120000",
"build": "./scripts/build-npm.sh",
"watch": "tsc -w -p ."
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/sinon": "^4.3.3",
"@types/sinon-chai": "^2.7.32",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-polyfill": "~6.26.0",
"babel-preset-env": "~1.6.1",
"browserify": "^16.2.2",
"chai": "^4.1.2",
"clang-format": "~1.2.2",
"mocha": "^5.2.0",
"sinon": "^5.0.10",
"sinon-chai": "^3.1.0",
"ts-node": "^8.3.0",
"tsify": "^4.0.0",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^2.0.4",
"typescript": "^3.5.2",
"uglify-js": "^3.3.27"
},
"files": [
"dist/reimprove.js"
]
}