-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1 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
{
"name": "markovchain",
"version": "1.0.2",
"description": "generates a markov chain of words based on input files",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/test*.js",
"babel-watch": "babel src --watch --out-dir lib",
"compile": "babel src --out-dir lib",
"lint": "eslint src/*.js older/*.js test/*.js",
"preversion": "npm test",
"prepublish": "npm run compile && npm test",
"postpublish": "rm -rf ./lib/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/swang/markovchain"
},
"keywords": [
"markov chain",
"markov"
],
"dependencies": {
"pick-one-by-weight": "~1.0.0"
},
"devDependencies": {
"async": "~0.2.9",
"babel": "~5.8.23",
"chai": "~3.4.1",
"eslint": "~3.2.2",
"mocha": "~2.3.4"
},
"author": "Shuan Wang",
"license": "ISC",
"bugs": {
"url": "https://github.com/swang/markovchain/issues"
},
"engines": {
"node": ">=0.8"
}
}