This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "preloadpics",
"version": "1.0.0",
"description": "Lightweight library for preloading images with callback.",
"keywords": [
"vanilla-javascript",
"vanilla-js",
"vanillajs",
"preload-images"
],
"main": "lib/preloadpics.esm.js",
"module": "lib/preloadpics.esm.js",
"unpkg": "lib/preloadpics.iife.js",
"files": [
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib",
"build:esm": "rollup --config scripts/esm.js",
"build:iife": "rollup --config scripts/iife.js",
"build:js": "yarn build:esm && yarn build:iife",
"build": "yarn clean && yarn build:js"
},
"homepage": "https://github.com/tyczynski/preloadpics",
"repository": {
"type": "git",
"url": "git+https://github.com/tyczynski/preloadpics.git"
},
"bugs": {
"url": "https://github.com/tyczynski/preloadpics/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/tyczynski/preloadpics/blob/master/LICENSE"
}
],
"author": {
"name": "Przemysław Tyczyński",
"url": "https://tyczynski.pl",
"email": "przemyslaw@tyczynski.pl"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-jest": "^24.9.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.7",
"jest": "^24.9.0",
"lint-staged": "^8.2.0",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"rollup": "^1.20.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-externals": "^2.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1"
}
}