-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 901 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
{
"name": "@domchristie/turn",
"version": "3.1.1",
"type": "module",
"description": "Animate page transitions in Turbo Drive apps.",
"main": "dist/turn.min.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup --config && cp turn.css dist/turn.css",
"prepare": "npm run build",
"start": "rollup --config --watch",
"test": "npx standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/domchristie/turn.git"
},
"keywords": [
"hotwire",
"turbo",
"animations"
],
"author": "Dom Christie",
"license": "MIT",
"bugs": {
"url": "https://github.com/domchristie/turn/issues"
},
"homepage": "https://github.com/domchristie/turn#readme",
"devDependencies": {
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"standard": "^17.0.0"
},
"peerDependencies": {
"@hotwired/turbo": "^7"
}
}