This repository was archived by the owner on Sep 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.45 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.45 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
{
"name": "@keyframes/spritesheet",
"version": "1.0.3",
"description": "Keyframes.Spritesheet is a plugin for Keyframes that easily generates css3 keyframes for elements using animated spritesheets.",
"main": "src/keyframes.spritesheet.js",
"scripts": {
"build": "npm run es6 && npm run browserify && npm run cleanup",
"es6": "babel example/example.js -o example/example.es6.js --no-comments",
"browserify": "browserify example/example.es6.js -o example/example.dist.js -t [ babelify --global --presets [ @babel/preset-env ] ]",
"cleanup": "rm example/example.es6.js",
"versions": "babel --version && browserify --version && node --version"
},
"repository": {
"type": "git",
"url": "https://github.com/Keyframes/Keyframes.Spritesheet.git"
},
"keywords": [
"animation",
"keyframes",
"css3",
"bezier"
],
"author": "krazyjakee",
"license": "MIT",
"bugs": {
"url": "https://github.com/Keyframes/Keyframes.Spritesheet/issues"
},
"homepage": "https://github.com/Keyframes/Keyframes.Spritesheet",
"dependencies": {
"@keyframes/core": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0"
}
}