-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 831 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 831 Bytes
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
{
"name": "state-learner",
"version": "1.2.0",
"description": "Takes a sequence of arbitrary symbols and predicts which one of them will be next.",
"main": "built/StateLearner.js",
"scripts": {
"test": "node node_modules/mocha/bin/mocha",
"prepublish": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThomasAllanLamb/state-learner.git"
},
"author": "Thomas Lamb",
"license": "ISC",
"bugs": {
"url": "https://github.com/ThomasAllanLamb/state-learner/issues"
},
"homepage": "https://github.com/ThomasAllanLamb/state-learner#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"babel-preset-env": "^1.5.2",
"mocha": "^3.4.1",
"ts-loader": "^2.2.0",
"webpack": "^2.6.1"
},
"types": "./src/index.d.ts"
}