-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
48 lines (48 loc) · 1.16 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
45
46
47
48
{
"name": "story-graph",
"version": "2.1.0",
"description": "Define a world and generate stories.",
"main": "dist/story.js",
"scripts": {
"lint": "eslint ./src/.",
"test": "_mocha --",
"coverage": "istanbul cover node_modules/.bin/_mocha --",
"view-coverage": "open ./coverage/lcov-report/index.html",
"generate-world": "node generateWorld.js"
},
"keywords": [
"Literature",
"Poetry",
"Generation"
],
"author": "James Edwards",
"license": "MIT",
"dependencies": {
"ts-loader": "^4.3.1",
"typescript": "^2.7.1"
},
"devDependencies": {
"eslint": "^2.10.2",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4"
},
"engines": {
"node": ">=6.0.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/incrediblesound/story-graph.git"
},
"bugs": {
"url": "https://github.com/incrediblesound/story-graph/issues"
},
"homepage": "https://github.com/incrediblesound/story-graph#readme"
}