-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1010 Bytes
/
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
{
"name": "svelte-transitions-scale",
"version": "0.9.0",
"description": "scale transition plugin for Svelte",
"main": "index.js",
"module": "module.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"prepublish": "npm run lint && npm run build",
"lint": "eslint src"
},
"files": [
"index.js",
"module.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ekhaled/svelte-transitions-scale.git"
},
"keywords": [
"svelte",
"transitions",
"css",
"animation"
],
"author": "Khaled Ahmed",
"license": "MIT",
"bugs": {
"url": "https://github.com/ekhaled/svelte-transitions-scale/issues"
},
"homepage": "https://github.com/ekhaled/svelte-transitions-scale#readme",
"devDependencies": {
"eslint": "^6.6.0",
"eslint-plugin-import": "^2.2.0",
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0"
},
"dependencies": {
"eases-jsnext": "^1.0.9"
}
}