-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
104 lines (104 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "easy-web-app-builder",
"version": "1.0.0-beta5",
"description": "Make your website better with one command.",
"type": "module",
"exports": "./src/ewab.js",
"bin": {
"easy-web-app-builder": "./bin/cli.js",
"ewab": "./bin/cli.js"
},
"files": [
"/bin/**/*",
"/docs/**/*",
"/lib/**/*",
"/src/**/*"
],
"engines": {
"node": ">=16.15"
},
"scripts": {
"lint:js": "eslint --fix \"**/*.js\"",
"lint:js:nofix": "eslint \"**/*.js\"",
"lint": "npm run lint:js",
"lint:nofix": "npm run lint:js:nofix",
"build:docs": "node \"build/docs.js\"",
"build:workbox": "node \"build/workbox.js\"",
"build": "npm run build:docs && npm run build:workbox",
"test:usability": "",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js \"tests/unit/.*\"",
"test:unit:dev": "node --experimental-vm-modules node_modules/jest/bin/jest.js \"tests/unit/.*\" --watch",
"test": "npm run build && npm run lint:nofix && npm run test:unit && npm run test:usability"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atjn/easy-web-app-builder.git"
},
"keywords": [
"webapp",
"pwa",
"easy",
"simple",
"build",
"minify",
"icon",
"favicon",
"serviceworker"
],
"author": {
"name": "atjn",
"email": "[email protected]",
"url": "https://github.com/atjn/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/atjn/easy-web-app-builder/issues"
},
"homepage": "https://github.com/atjn/easy-web-app-builder#readme",
"dependencies": {
"chalk": "^5.2.0",
"chokidar": "^3.5.3",
"clean-css": "^5.3.2",
"css-select": "^5.1.0",
"detect-indent": "^7.0.1",
"dom-serializer": "^2.0.0",
"domutils": "^3.1.0",
"escape-string-regexp": "^5.0.0",
"folder-hash": "^4.0.4",
"fs-extra": "^11.1.1",
"html-minifier-terser": "^7.2.0",
"htmlparser2": "^9.0.0",
"inquirer": "^9.2.7",
"inquirer-file-tree-selection-prompt": "2.0.5",
"joi": "^17.9.2",
"jsdom": "^22.1.0",
"lodash": "^4.17.21",
"log-update": "^5.0.1",
"minimatch": "^9.0.1",
"object-hash": "^3.0.0",
"postcss": "^8.4.24",
"postcss-value-parser": "^4.2.0",
"svgo": "^3.0.2",
"terser": "^5.18.0",
"tiny-async-pool": "^2.1.0",
"tiny-glob": "^0.2.9",
"wasm-vips": "^0.0.5",
"workbox-build": "^7.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@atjn/eslint-config": "^7.1.0",
"@types/clean-css": "^4.2.6",
"@types/folder-hash": "^4.0.2",
"@types/fs-extra": "^11.0.1",
"@types/html-minifier-terser": "^7.0.0",
"@types/jsdom": "^21.1.1",
"@types/object-hash": "^3.0.2",
"@types/tiny-async-pool": "^2.0.0",
"eslint": "^8.42.0",
"eslint-plugin-jsdoc": "^40.3.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"workbox-window": "^7.0.0"
}
}