-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
43 lines (43 loc) · 1.2 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
42
43
{
"name": "flipping",
"version": "2.0.0-3",
"description": "Flipping awesome animations.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "npm run build:watch",
"test": "NODE_ENV=test && mocha -r ts-node/register test/**.test.ts",
"build": "tsc && npm run build:prod",
"build:prod": "rollup -c",
"build:watch": "rollup -cw",
"examples": "node-sass -w examples/scss -o examples/css",
"prepublish": "npm run build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidkpiano/flipping.git"
},
"keywords": [
"flip",
"animation",
"transition"
],
"author": "David <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidkpiano/flipping/issues"
},
"homepage": "https://github.com/davidkpiano/flipping#readme",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"rollup": "^2.18.1",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-filesize": "^9.0.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.9.5"
},
"dependencies": {}
}