-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "base-href-webpack-plugin",
"version": "3.0.1",
"description": "Webpack plugin for inserting base href tag in head block",
"main": "./build/index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dzonatan/base-href-webpack-plugin.git"
},
"scripts": {
"build": "babel ./index.js --presets es2015 --source-maps --out-dir ./build",
"watch": "babel --watch ./index.js --presets es2015 --source-maps --out-dir ./build",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "jasmine ./spec/plugin.spec.js && npm run tsd",
"tsd": "tsd"
},
"keywords": [
"base",
"href",
"webpack",
"plugin"
],
"author": "Rokas Brazdzionis <rokas.brazdzionis@gmail.com>",
"license": "MIT",
"peerDependencies": {
"html-webpack-plugin": "^4.0.0",
"webpack": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.5.2",
"jasmine": "^2.5.3",
"rimraf": "^2.6.2",
"tsd": "^0.14.0",
"webpack": "^5.23.0"
}
}