-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "animations.js",
"version": "1.0.10",
"description": "Web Animations API based in Animate.css",
"author": "Roberto Entringer <r.entringer@gmail.com> (https://robertoentringer.com)",
"license": "MIT",
"keywords": [
"waapi",
"transitions",
"animations",
"web-animations-api",
"js",
"animate.css"
],
"repository": "github:robertoentringer/animations.js",
"bugs": {
"url": "https://github.com/robertoentringer/animations.js/issues",
"email": "r.entringer@gmail.com"
},
"homepage": "https://animations.now.sh",
"main": "src/animations.js",
"module": "src/animations.js",
"unpkg": "dist/animations.js",
"files": [
"dist/**/*.js"
],
"scripts": {
"lint": "eslint src/**/*.js --fix",
"build": "rollup -c",
"prepublishOnly": "npm run lint && npm run build && npm version patch && git push && git push --tags"
},
"devDependencies": {
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "^2.2.1",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2"
}
}