forked from scambier/markov-strings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 917 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": "markov-strings",
"version": "2.1.0",
"description": "A Markov string generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --coverage --coverageReporters=lcov --coverageReporters=html",
"test:coveralls": "jest --coverageReporters=text-lcov | coveralls"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/scambier/markov-strings"
},
"keywords": [
"markov",
"string",
"chain",
"procedural",
"generation",
"text"
],
"author": "scambier",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.2",
"coveralls": "^3.0.5",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"dependencies": {
"lodash": "^4.17.14"
}
}