-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 975 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
42
43
44
45
46
47
48
49
50
{
"name": "markov-strings",
"version": "3.0.1",
"description": "A Markov string generator",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"test": "jest --coverage"
},
"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": "^26.0.24",
"@types/lodash": "^4.17.0",
"@types/node": "^14.18.63",
"coveralls": "^3.1.1",
"jest": "^26.6.3",
"prettier": "^3.2.5",
"ts-jest": "^26.5.6",
"typescript": "^3.9.10"
},
"dependencies": {
"lodash": "^4.17.21"
},
"pnpm": {
"overrides": {
"tough-cookie@<4.1.3": ">=4.1.3",
"@babel/traverse@<7.23.2": ">=7.23.2"
}
}
}