-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@bautrukevich/preload",
"version": "0.2.0",
"description": "It's a small library for preload images in browser",
"main": "src/index.js",
"scripts": {
"build": "webpack -p --env=build",
"dev": "webpack-dev-server --hot",
"test": "mocha --require test/setup.js --compilers js:babel-core/register --require babel-polyfill --colors ./test/*.spec.js",
"test:watch": "mocha --require test/setup.js --compilers js:babel-core/register --require babel-polyfill --colors -w ./test/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bautrukevich/preload.git"
},
"keywords": [
"webpack",
"es6",
"library",
"image",
"preload"
],
"author": "Siarhei Bautrukevich",
"license": "MIT",
"bugs": {
"url": "https://github.com/bautrukevich/preload/issues"
},
"homepage": "https://bautrukevich.github.io/preload",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-latest": "^6.16.0",
"babel-register": "^6.18.0",
"babel-require": "1.0.1",
"chai": "3.5.0",
"chai-as-promised": "7.1.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.10.3",
"jsdom": "11.6.2",
"mocha": "3.5.3",
"mocha-jsdom": "1.1.0",
"webpack": "3.11.0",
"webpack-dev-server": "1.16.5",
"yargs": "6.6.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0"
}
}