-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "preloader.js",
"version": "1.2.2",
"description": "A js library for preload image and audio",
"main": "dist/preloader.cjs.js",
"module": "dist/preloader.esm.js",
"browser": "dist/preloader.umd.js",
"scripts": {
"build": "rollup -c",
"lint": "eslint . --cache --fix",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/o2team/elf-preloader.js.git"
},
"keywords": [
"preloader",
"loader",
"image",
"audio"
],
"bugs": {
"url": "https://github.com/o2team/elf-preloader.js/issues"
},
"homepage": "https://github.com/o2team/elf-preloader.js#readme",
"author": "Liucw",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.1.6",
"@babel/preset-env": "7.1.6",
"eslint": "5.9.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"rollup": "0.67.3",
"rollup-plugin-babel": "4.0.3"
},
"files": [
"dist"
]
}