-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.31 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
{
"name": "cssSprite",
"version": "1.0.0",
"description": "CssSprite,方便对逐帧动画(连续的sprite图片)在DOM中进行渲染,控制动画播放。",
"repository": {
"type": "git",
"url": "https://github.com/bobby169/cssSprite.git"
},
"license": "MIT",
"main": "src/cssSprite.js",
"keywords": [
"sprite",
"cssSprite",
"spritesheet"
],
"dependencies": {
"i": "^0.3.6",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-uglify": "^6.0.2"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.4.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"commander": "^4.0.0",
"create-html": "^4.1.0",
"eslint": "^5.8.0",
"eslint-plugin-eslint-plugin": "^2.0.1",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-vue": "^5.0.0",
"glob": "^7.1.6",
"jest": "^24.3.1",
"spritesmith": "^3.4.0"
},
"scripts": {
"build": "npm run test && rollup --config rollup.config.js",
"test": "jest"
}
}