-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "prefetch-image",
"version": "1.1.1",
"description": "Prefetch all images for your web app",
"main": "dist/prefetch-image.js",
"main:next": "index.js",
"scripts": {
"build:dev": "NODE_ENV=development webpack --progress",
"build:prod": "NODE_ENV=production webpack --progress",
"build": "npm run build:dev && npm run build:prod",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonBoy/prefetch-image.git"
},
"keywords": [
"prefetch",
"preload",
"image",
"h5"
],
"author": "Jason Jiang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonBoy/prefetch-image/issues"
},
"homepage": "https://github.com/JasonBoy/prefetch-image#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"webpack": "^2.5.1"
},
"dependencies": {
"url-join": "2.0.1"
}
}