forked from Keyframes/jQuery.Keyframes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.7 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
49
{
"name": "jquerykeyframes",
"version": "1.0.3",
"description": "jQuery-Keyframes allows dynamic generation of CSS3 keyframes with callback events and other niceness.",
"main": "dist/jquery.keyframes.min.js",
"scripts": {
"prepare": "npm run build",
"build": "npm run es6 && npm run browserify && npm run minify && npm run cleanup",
"es6": "babel src/jquery.keyframes.js -o dist/jquery.keyframes.es6.js --no-comments",
"browserify": "browserify dist/jquery.keyframes.es6.js -o dist/jquery.keyframes.js -t [ babelify --global --presets [ @babel/preset-env ] ]",
"cleanup": "rm dist/jquery.keyframes.es6.js",
"minify": "uglifyjs --compress --mangle -- dist/jquery.keyframes.js > dist/jquery.keyframes.min.js",
"watch": "nodemon --watch example/example.html --watch src --exec 'npm run build'"
},
"repository": {
"type": "git",
"url": "https://github.com/Keyframes/jQuery.Keyframes.git"
},
"keywords": [
"animation",
"keyframes",
"jquery",
"css3"
],
"author": "krazyjakee",
"license": "MIT",
"bugs": {
"url": "https://github.com/Keyframes/jQuery.Keyframes/issues"
},
"homepage": "https://github.com/Keyframes/jQuery.Keyframes",
"dependencies": {
"@keyframes/core": "^1.0.6",
"jquery": "latest"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.38",
"@babel/core": "^7.0.0-beta.38",
"@babel/preset-env": "^7.0.0-beta.38",
"babelify": "github:ylemkimon/babelify",
"browserify": "^16.0.0",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.0",
"nodemon": "^1.14.12",
"uglify-js": "^3.3.5"
}
}