-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.86 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
{
"name": "webform-toolkit",
"version": "3.1.4",
"description": "Create a HTML form with field validation and custom errors.",
"main": "src/webform-toolkit.js",
"scripts": {
"build": "babel src -s -D -d dist && npm run sass && npm run minify-css && npm run minify-js",
"lint": "eslint --ignore-path .gitignore src test",
"sass": "sass src/webform-toolkit.scss dist/webform-toolkit.css",
"minify-css": "node-minify --compressor clean-css --input 'dist/webform-toolkit.css' --output 'dist/webform-toolkit.min.css'",
"minify-js": "node-minify --compressor uglify-js --input 'dist/webform-toolkit.js' --output 'dist/webform-toolkit.min.js'",
"prepack": "npm run build",
"test": "wdio wdio.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuxy/webform-toolkit.git"
},
"keywords": [
"javascript",
"browser",
"plugin",
"webform",
"generator"
],
"bugs": {
"url": "https://github.com/nuxy/webform-toolkit/issues"
},
"homepage": "https://github.com/nuxy/webform-toolkit#readme",
"author": "Marc S. Brooks <[email protected]> (https://mbrooks.info)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.24.7",
"@babel/register": "^7.24.6",
"@node-minify/clean-css": "^4.1.2",
"@node-minify/cli": "^6.4.0",
"@node-minify/uglify-js": "^4.1.2",
"@wdio/cli": "^8.38.2",
"@wdio/local-runner": "^8.38.2",
"@wdio/mocha-framework": "^8.38.2",
"@wdio/spec-reporter": "^8.38.2",
"eslint": "^8.57.0",
"sass": "^1.77.4"
},
"overrides": {
"got": "^12.0.0",
"ws": "^7.0.0"
}
}