-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 2.19 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "statblock5e-creator",
"version": "1.3.0",
"description": "A frontend web application for creating creature statblocks for Dungeons and Dragons 5th Edition.",
"main": "index.js",
"dependencies": {
"clipboard": "^2.0.8",
"dompurify": "^2.3.1",
"js-beautify": "^1.14.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/polyfill": "^7.12.1",
"@testing-library/jest-dom": "^5.14.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"jest": "^27.0.6",
"pegjs": "^0.10.0",
"util": "^0.12.4",
"wait-for-expect": "^3.0.2",
"webpack": "^5.51.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-merge": "^5.8.0"
},
"scripts": {
"test": "jest",
"start": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"generate-markdown-parser": "node src/js/parsers/scripts/generate-parser-script.js src/js/parsers/grammars/markdown-grammar.pegjs src/js/parsers/markdown-parser.js",
"generate-math-parser": "node src/js/parsers/scripts/generate-parser-script.js src/js/parsers/grammars/math-grammar.pegjs src/js/parsers/math-parser.js",
"generate-name-parser": "node src/js/parsers/scripts/generate-parser-script.js src/js/parsers/grammars/name-grammar.pegjs src/js/parsers/name-parser.js"
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.js",
"!src/js/init.js",
"!src/js/parsers/scripts/generate-parser-script.js",
"!src/js/helpers/test/**"
],
"moduleNameMapper": {
"^/(.*)$": "<rootDir>/$1"
},
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect",
"<rootDir>/src/js/helpers/test/expect-matchers",
"<rootDir>/src/js/helpers/test/test-globals"
],
"testEnvironment": "jsdom"
},
"browser": {
"fs": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/Frumple/statblock5e-creator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Frumple/statblock5e-creator/issues"
},
"homepage": "https://github.com/Frumple/statblock5e-creator#readme"
}