This repository has been archived by the owner on Dec 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.1 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@foxglovetech/turbo-form",
"version": "1.1.0",
"description": "Enhances forms with turbolinks like declarations.",
"main": "index.js",
"files": [
"dist/*.js",
"dist/*.js.map",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/types/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alvincrespo/turbo-form.git"
},
"keywords": [
"hotwire",
"turbo",
"forms"
],
"author": "alvincrespo",
"license": "MIT",
"bugs": {
"url": "https://github.com/alvincrespo/turbo-form/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/multer": "^1.4.5",
"concurrently": "^6.3.0",
"cypress": "^8.5.0",
"ejs": "^3.1.6",
"fastify": "^3.22.0",
"fastify-formbody": "^5.1.0",
"fastify-static": "^4.4.0",
"intern": "^4.9.0",
"multer": "^1.4.2",
"point-of-view": "^4.15.2",
"rollup": "^2.35.1",
"semantic-release": "^18.0.0",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"scripts": {
"clean": "rm -fr dist",
"clean:win": "rmdir /s /q dist",
"build": "tsc --noEmit false --outDir dist",
"build:win": "tsc --noEmit false --outDir dist & rollup -c",
"watch": "rollup -wc",
"start": "node src/tests/runner.js serveOnly",
"test": "concurrently --kill-others \"yarn test:start:server\" \"yarn test:run:cypress\"",
"test:build": "tsc --noEmit false --outDir tests/public/assets",
"test:start:server": "node tests/server.js",
"test:start:cypress": "yarn cypress open --project ./tests",
"test:run:cypress": "yarn cypress run --project ./tests",
"prerelease": "yarn build && git --no-pager diff && echo && npm pack --dry-run && echo && read -n 1 -p \"Look OK? Press any key to publish and commit v$npm_package_version\" && echo",
"release": "npm publish && git commit -am \"$npm_package_name v$npm_package_version\" && git push"
},
"dependencies": {
"@hotwired/stimulus": "^3.0.1"
},
"release": {
"branches": [
"main"
]
}
}