-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.64 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
{
"name": "@webdeveric/image-preloader",
"version": "0.5.0",
"description": "Preload images using promises",
"license": "GPL-3.0",
"author": {
"name": "Eric King",
"email": "eric@webdeveric.com",
"url": "http://webdeveric.com/"
},
"main": "lib/ImagePreloader.js",
"jsnext:main": "src/ImagePreloader.js",
"files": [
"lib/",
"src/"
],
"scripts": {
"lint": "eslint -c eslint-config-webdeveric --fix src && eslint -c test/.eslintrc --fix test",
"test": "karma start test/karma.config.js",
"dev": "npm run lint && babel src --out-dir lib --watch --source-maps inline",
"build": "npm run lint && babel src --out-dir lib --compact",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/webdeveric/image-preloader.git"
},
"bugs": {
"url": "https://github.com/webdeveric/image-preloader/issues"
},
"keywords": [
"image",
"preload",
"preloader",
"progress",
"promise",
"srcset",
"crossorigin"
],
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.0",
"babel-core": "^6.0",
"babel-eslint": "^7.0",
"babel-loader": "^7.1",
"babel-polyfill": "^6.0",
"babel-preset-es2015": "^6.0",
"eslint": "^4.0",
"eslint-config-webdeveric": "^0.2",
"eslint-loader": "^1.0",
"jasmine-core": "^2.0",
"karma": "^1.0",
"karma-babel-preprocessor": "^6.0",
"karma-chrome-launcher": "^2.0",
"karma-firefox-launcher": "^1.0",
"karma-jasmine": "^1.0",
"karma-phantomjs-launcher": "^1.0",
"karma-safari-launcher": "^1.0",
"karma-webpack": "^2.0",
"webpack": "^3.0"
}
}