-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.84 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
{
"private": true,
"name": "eigengraus-essential-establishment-generator",
"version": "2.3.1",
"description": "Eigengrau's Essential Establishment Generator",
"main": "main.txt",
"repository": {
"type": "git",
"url": "git+https://github.com/ryceg/Eigengrau-s-Essential-Establishment-Generator.git"
},
"author": "ryceg",
"license": "GNU GENERAL PUBLIC LICENSE",
"bugs": {
"url": "https://github.com/ryceg/Eigengrau-s-Essential-Establishment-Generator/issues"
},
"homepage": "https://github.com/ryceg/Eigengrau-s-Essential-Establishment-Generator/blob/master/README.md",
"scripts": {
"install-compiler": "node scripts/install-compiler",
"build": "node scripts/build",
"start": "node scripts/build --watch",
"test": "jest",
"lint": "eslint **/*.{js,ts}",
"deploy": "gh-pages -d gh-pages"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"jest": {
"preset": "ts-jest"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/jquery": "^3.5.0",
"@types/webpack": "^4.41.18",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"chalk": "^4.0.0",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-function-call-context": "^1.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"shelljs": "^0.8.3",
"ts-jest": "^26.1.1",
"typescript": "^3.9.3",
"yauzl": "^2.10.0"
},
"dependencies": {
"ts-loader": "^7.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}