-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
44
45
46
{
"name": "kinetica",
"version": "0.3.0",
"description": "Unprecedented kinetic engine",
"keywords": [
"kinetic",
"drag`n`drop",
"scroll",
"swipe"
],
"license": "MIT",
"homepage": "https://github.com/broadsw0rd/kinetica",
"repository": {
"type": "git",
"url": "https://github.com/broadsw0rd/kinetica"
},
"bugs": {
"url": "https://github.com/broadsw0rd/kinetica/issues",
"email": "[email protected]"
},
"author": {
"name": "Vladimir Bykov",
"email": "[email protected]",
"url": "https://github.com/broadsw0rd"
},
"files": [
"dist"
],
"main": "dist/kinetic.umd.js",
"module": "dist/kinetic.js",
"devDependencies": {
"rollup": "1.16.2",
"rollup-plugin-buble": "0.19.6",
"snazzy": "8.0.0",
"standard": "12.0.1",
"uglify-js": "3.6.0"
},
"peerDependencies": {
"vectory": "1.2.3"
},
"scripts": {
"check": "standard src/*.js | snazzy",
"build": "rollup -c",
"min": "uglifyjs dist/kinetic.umd.js -c -m > dist/kinetic.min.js"
}
}