-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 999 Bytes
/
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
{
"name": "@deleteagency/resource-loader",
"version": "1.0.2",
"description": "Dynamically loads styles and js files to the page without duplicating",
"main": "src/index.js",
"files": [
"src",
"standalone"
],
"repository": {
"type": "git",
"url": "https://github.com/Delete-Agency/resource-loader.git"
},
"homepage": "https://github.com/Delete-Agency/resource-loader",
"scripts": {
"standalone": "webpack --config webpack.standalone.config.js",
"demo": "webpack --config webpack.demo.config.js",
"demo:watch": "webpack --config webpack.demo.config.js --watch",
"test": "echo \"No test specified\"",
"prepublish": "npm run standalone"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^2.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.6"
}
}