-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.99 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.99 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
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
{
"name": "unpoly",
"version": "3.14.2",
"description": "Progressive enhancement for HTML",
"main": "unpoly.js",
"style": "unpoly.css",
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"unpoly*.js",
"unpoly*.css",
"unpoly*.map"
],
"scripts": {
"test-server": "node bin/test-server.mjs",
"test": "node bin/test.mjs",
"build": "webpack --config ./webpack/production.js && gzip --keep --force dist/unpoly.es6.min.js dist/unpoly.min.js",
"build-ci": "webpack --config ./webpack/ci.js",
"build-dev": "webpack --config ./webpack/development.js",
"watch-dev": "webpack --watch --config ./webpack/development.js",
"dev": "npx nf start --procfile Procfile.dev",
"lint": "npx eslint src",
"release": "node bin/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unpoly/unpoly.git"
},
"keywords": [
"html",
"hypermedia",
"progressive-enhancement",
"server-side-rendering",
"html-driven",
"html-over-the-wire"
],
"author": "Henning Koch <[email protected]> (https://makandra.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/unpoly/unpoly/issues"
},
"homepage": "https://unpoly.com",
"devDependencies": {
"@eslint/js": "^9",
"@stylistic/eslint-plugin": "^4",
"css-loader": "*",
"ejs": "^3.1.10",
"eslint": "^9",
"eslint-webpack-plugin": "^5",
"express": "*",
"foreman": "*",
"glob": "*",
"globals": "^16",
"jasmine": "^5.13.0",
"jasmine-ajax": "*",
"jquery": "*",
"mini-css-extract-plugin": "*",
"nf": "*",
"null-loader": "*",
"opn": "*",
"picocolors": "^1.1.1",
"puppeteer": "^24.6.0",
"rails-erb-loader": "*",
"sass": "*",
"sass-loader": "*",
"terser-webpack-plugin": "*",
"ts-loader": "*",
"typescript": "*",
"typescript-eslint": "^8",
"wait-on": "^8.0.3",
"webpack": "*",
"webpack-cli": "*",
"webpack-dev-server": "*",
"yoctocolors-cjs": "*"
}
}