-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 KB
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
{
"name": "markovjs",
"description": "reinforcement learning in javascript",
"version": "0.1.3",
"main": "index.js",
"author": "lsunsi",
"license": "MIT",
"repository": "https://github.com/lsunsi/markovjs.git",
"files": [
"lib/",
"*.js"
],
"keywords": [
"markov",
"machine",
"reinforcement",
"learning",
"value",
"iteration",
"sarsa",
"q-learning"
],
"dependencies": {
"babel-runtime": "^6.18.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"chai": "^3.5.0",
"eslint": "^3.11.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.36.0",
"mocha": "^3.2.0"
},
"scripts": {
"build": "babel src -d lib",
"build:clean": "rm -rf lib/",
"check:style": "eslint ./src",
"check:tests": "mocha --compilers js:babel-core/register",
"check:types": "flow",
"setup": "node setup.js ./lib index memory policies",
"setup:clean": "rm index.js memory.js policies.js",
"start:dev": "babel-node ./src/index.js"
}
}