-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.24 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
{
"name": "@dotburo/form-digger",
"version": "1.1.1",
"description": "Generic HTML form interpretation and server fetch with pagination",
"homepage": "https://github.com/dotburo/form-digger",
"author": "dotburo <code@dotburo.org> (https://dotburo.org)",
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "git+https://github.com/dotburo/form-digger.git"
},
"bugs": {
"url": "https://github.com/dotburo/form-digger/issues"
},
"main": "src/FormDigger.js",
"module": "dist/form-digger.js",
"browser": "dist/form-digger.min.js",
"directories": {
"test": "tests"
},
"scripts": {
"demo": "cp ./dist/form-digger-min.js ./dist/paginator-min.js ./docs",
"dev": "rollup -c --environment BUILD:development && npm run demo",
"prod": "rollup -c --environment BUILD:production && npm run demo",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "rollup -c -w"
},
"devDependencies": {
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.69",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}