-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1010 Bytes
/
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
{
"name": "markovjs-gridworld",
"description": "gridworld implementation example for markovjs package",
"version": "0.1.1",
"main": "index.js",
"author": "lsunsi",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.23.0",
"markovjs": "^0.1.3"
},
"keywords": [
"markov",
"markovjs",
"reinforcement",
"learning",
"example",
"grid",
"world",
"robson"
],
"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-preset-env": "^1.6.0",
"eslint": "^3.11.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-flowtype": "^2.28.2",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.36.0"
},
"scripts": {
"build": "babel src -d lib",
"check:style": "eslint ./src",
"check:types": "flow",
"start:dev": "babel-node ./src/index.js",
"start": "node ./lib/index.js"
}
}