-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "@ambitiondev/form-utils",
"version": "0.0.3",
"description": "A bundle of form utilities for usage in your (web)app",
"main": "dist/form-utils.common.js",
"types": "dist/types/index.d.ts",
"module": "dist/form-utils.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --configProd",
"release": "dotenv release-it",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambitiondev/form-utils.git"
},
"keywords": [
"form",
"utilities",
"bnachtweh",
"ambitiondev",
"formdata",
"helper"
],
"author": {
"email": "[email protected]",
"name": "Berrie Nachtweh",
"url": "https://ambitiondev.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ambitiondev/form-utils/issues"
},
"homepage": "https://github.com/ambitiondev/form-utils#readme",
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-typescript": "^5.0.2",
"fs-extra": "^9.0.1",
"rollup": "^2.26.8",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"release-it": {
"git": {
"requireCleanWorkingDir": false,
"changelog": "npx auto-changelog --stdout --commit-limit false --hide-credit --output CHANGELOG.md",
"commitMessage": "release: ${version}",
"requireUpstream": false
},
"github": {
"release": true
},
"hooks": {
"before:bump": "npx auto-changelog --hide-credit --output CHANGELOG.md -p"
}
},
"dependencies": {
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.3"
}
}