-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
41
{
"name": "keyframegen",
"version": "0.1.1",
"description": "A JS library that generates keyframes of common animations. For use with Web Animation API or plain CSS.",
"main": "dist/keyframegen.min.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc --p tsconfig.json && typedoc && rollup --config ./rollup.config.js",
"clean": "rimraf ./dist ./docs",
"prepublishOnly": "npm run build"
},
"author": "CFT-Chris",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.4.0",
"rimraf": "^3.0.0",
"rollup": "^2.22.1",
"rollup-plugin-terser": "^6.1.0",
"typedoc": "^0.17.8",
"typescript": "^3.2.4"
},
"files": [
"dist/"
],
"keywords": [
"animation",
"css",
"javascript",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/CFT-Chris/keyframegen"
},
"bugs": {
"url": "https://github.com/CFT-Chris/keyframegen/issues"
},
"homepage": "https://cft-chris.github.io/keyframegen"
}