-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 831 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 831 Bytes
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
{
"name": "web-inject",
"version": "1.1.0",
"description": "Inject js and css into document, or preload images resourcs.",
"main": "lib/web-inject.min.js",
"module": "src/web-inject.js",
"author": "EvanLiu2968 <evanliu2968@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EvanLiu2968/web-inject.git"
},
"keywords": [
"inject",
"inject-js",
"inject-css",
"preload-images"
],
"bugs": {
"url": "https://github.com/EvanLiu2968/web-inject/issues"
},
"scripts": {
"dev": "rollup --watch --config",
"build": "cross-env NODE_ENV=production rollup --config"
},
"devDependencies": {
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"rollup": "^1.27.14",
"rollup-plugin-uglify": "^6.0.4",
"rollup-watch": "^4.3.1"
}
}