This repository was archived by the owner on Dec 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.81 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.81 KB
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
66
67
68
69
70
71
72
{
"name": "@reactway/webpack-builder-plugin-web-dev",
"version": "2.0.4",
"description": "A plugin made for webpack-builder.",
"keywords": [
"webpack",
"webpack-builder",
"reactway",
"plugin",
"web-dev",
"dev-server"
],
"authors": [
"Martynas Žilinskas <martynas@quatrodev.com> (https://github.com/MartynasZilinskas)",
"Dovydas Navickas <dovydas@quatrodev.com> (https://github.com/DovydasNavickas)",
"Eimantas Dumšė <eimantas@quatrodev.com> (https://github.com/EimantasDumse)"
],
"repository": "github:reactway/webpack-builder",
"bugs": "https://github.com/reactway/webpack-builder/issues",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"pretest": "tsc -p . --noEmit && tslint -p .",
"test": "jest"
},
"files": [
"dist",
"**/*.md"
],
"dependencies": {
"@reactway/webpack-builder": "^2.0.4",
"@types/webpack-dev-server": "^3.4.0",
"tslib": "^1.10.0",
"upath": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"istanbul-azure-reporter": "^0.1.4",
"jest": "^24.9.0",
"jest-junit": "^9.0.0",
"simplr-tslint": "^1.0.0-alpha.14",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"tslint-language-service": "^0.9.9",
"typescript": "^3.7.2"
},
"peerDependencies": {
"webpack-dev-server": "^3.9.0"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"reporters": [
"default",
"jest-junit"
],
"collectCoverage": true,
"testRegex": "/__tests__/.*\\.(test|spec).(ts|tsx)$",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/__tests__/*",
"!src/index.ts"
],
"coverageReporters": [
"cobertura",
"istanbul-azure-reporter"
]
}
}