This repository has been archived by the owner on Mar 15, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.63 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
66
67
68
69
70
71
72
73
74
75
{
"name": "configs-webpack-plugin",
"version": "0.1.0",
"description": "A simplified AoT runtime config solution for your webpack builds",
"keywords": [
"webpack",
"runtime configs",
"config",
"runtime",
"multi config"
],
"repository": "github:maraisr/configs-webpack-plugin",
"license": "MIT",
"author": "Marais Rossouw <me@maraisr.com>",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc --incremental && tsc -d --declarationDir dist/types/",
"build:watch": "tsc --watch",
"format": "prettier --write \"{*,lib/**/*}.+(md|js|ts|json)\"",
"lint": "tsc --noEmit",
"test": "jest"
},
"prettier": {
"bracketSpacing": true,
"printWidth": 80,
"proseWrap": "always",
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": true,
"overrides": [
{
"files": [
"package.json"
],
"options": {
"printWidth": 999,
"tabWidth": 2,
"useTabs": false
}
}
]
},
"jest": {
"setupFiles": [
"./spec/setup.js"
],
"testEnvironment": "node"
},
"dependencies": {
"tapable": "^1.1.3",
"webpack-sources": "^1.4.3"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/webpack": "^4.41.10",
"html-webpack-plugin": "^4.0.3",
"jest": "^25.2.4",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1"
},
"peerDependencies": {
"webpack": "^4.0.0"
},
"volta": {
"node": "13.12.0",
"yarn": "1.22.4"
}
}