-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 816 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 816 Bytes
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
{
"name": "css-animation-timeline",
"version": "1.0.7",
"description": "Easily control complex css animations using this tiny utility class (Under 3kb!)",
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"keywords": [
"js",
"css",
"animation",
"timeline"
],
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir dist && uglifyjs dist/index.js -o dist/index.js --compress --mangle",
"prepublish": "npm run build"
},
"author": "James Ward",
"license": "MIT",
"bugs": {
"url": "https://github.com/JWardee/css-animation-timeline/issues"
},
"homepage": "https://github.com/JWardee/css-animation-timeline#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"uglify-js": "^3.6.0"
}
}