-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
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
{
"name": "dirty-form",
"version": "1.0.0",
"description": "Lightweight plugin to track form changes and prevents loosing unsaved edits. No dependencies.",
"keywords": [
"javascript",
"dirty form",
"dirty",
"form",
"areYouSure",
"lightweight"
],
"repository": {
"type": "git",
"url": "https://github.com/kirillplatonov/dirty-forms"
},
"license": "MIT",
"author": "Kirill Platonov <mail@kirillplatonov.com>",
"type": "module",
"main": "dist/dirty-form.js",
"module": "dist/dirty-form.esm.js",
"files": [
"dist",
"MIT-LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup --c",
"dev": "rollup -wc",
"prepublishOnly": "npm run build",
"prerelease": "git --no-pager diff && echo && npm pack --dry-run",
"release": "npm publish"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-buble": "^1.0.3",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.19.1"
}
}