-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.28 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
49
50
51
52
53
{
"name": "this-is-your-life",
"version": "1.5.0",
"description": "Generate character backstories based on the Xanathar's Guide to Everything 'This Is Your Life' tables.",
"main": "./src/index.js",
"scripts": {
"build": "webpack",
"start": "webpack serve",
"test": "jasmine --config=jasmine.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trwolfe13/this-is-your-life.git"
},
"keywords": [
"xanathar's",
"guide",
"to",
"everything",
"dungeons",
"dragons",
"D&D",
"5e",
"XGE",
"XGtE"
],
"author": "Thomas R. Wolfe",
"license": "MIT",
"bugs": {
"url": "https://github.com/trwolfe13/this-is-your-life/issues"
},
"homepage": "https://github.com/trwolfe13/this-is-your-life#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^5.3.1",
"jasmine": "^3.2.0",
"json-loader": "^0.5.7",
"raw-loader": "^4.0.2",
"sass": "^1.32.4",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"handlebars": "^4.5.3",
"tiyl": "^1.1.4"
}
}