-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.91 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.91 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
{
"name": "mutable-webpack-angular-builder",
"description": "Allows to mutate the webpack configuration before is being used by @angular-devkit/build-angular:browser",
"version": "1.0.3",
"license": "MIT",
"author": "Gonzalo Müller Bravo",
"builders": "src/main/builders.json",
"main": "src/main/index.js",
"homepage": "https://gitlab.com/gmullerb/mutable-webpack-angular-builder",
"repository": {
"type": "git",
"url": "https://github.com/gmullerb/mutable-webpack-angular-builder"
},
"bugs": {
"url": "https://gitlab.com/gmullerb/mutable-webpack-angular-builder/issues"
},
"keywords": [
"angular",
"devkit",
"angular devkit",
"angular-devkit",
"angular builder",
"angular-builder",
"build angular",
"build-angular",
"builder",
"webpack",
"mutable",
"mutator",
"mutate",
"custom",
"angular cli",
"angular-cli",
"angular ng",
"angular-ng",
"ng",
"cli",
"react"
],
"peerDependencies": {
"@angular-devkit/build-angular": "*"
},
"scripts": {
"onlyGradle:main-lint": "eslint --config ${npm_config_eslintConfigFile} --color src/main/**/*.js",
"onlyGradle:test-lint": "eslint --config ${npm_config_eslintConfigFile} --color src/test/**/*.js",
"main-flow": "flow check --color=always src/main",
"test": "karma start --colors"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@flowjs/flow.js": "^2.13.1",
"babel-loader": "^8.0.5",
"eslint": "^5.15.1",
"flow-bin": "^0.94.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdom": "^14.0.0",
"jasmine-core": "^3.3.0",
"karma": "^4.0.1",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "^2.0.1",
"karma-jsdom-launcher": "^7.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.5",
"webpack": "^4.29.6"
}
}