-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 886 Bytes
/
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": "onloaded",
"version": "1.0.0",
"description": "A tiny (350B) library to detect when images have loaded.",
"repository": "lukeed/onloaded",
"umd:main": "dist/onloaded.min.js",
"module": "dist/onloaded.es.js",
"main": "dist/onloaded.js",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "lukeed.com"
},
"engines": {
"node": ">=4"
},
"scripts": {
"build": "node builder",
"pretest": "npm run build",
"test": "mocha test/*.js"
},
"files": [
"dist"
],
"keywords": [],
"dependencies": {
"@arr/foreach": "^1.0.0"
},
"devDependencies": {
"gzip-size": "^3.0.0",
"mocha": "^3.4.2",
"pretty-bytes": "^4.0.2",
"rollup": "^0.45.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-node-resolve": "^3.0.0",
"uglify-js": "^2.8.22"
}
}