forked from unpoly/unpoly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.71 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
{
"name": "unpoly",
"version": "3.5.2",
"description": "Unobtrusive JavaScript framework",
"main": "unpoly.js",
"style": "unpoly.css",
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"unpoly*.js",
"unpoly*.css"
],
"scripts": {
"test": "node spec/app.js",
"build": "webpack --config ./webpack/production.js && gzip --keep --force dist/unpoly.es6.min.js dist/unpoly.min.js",
"dev": "npx nf start --procfile Procfile.dev",
"watch-dev": "webpack --watch --config ./webpack/development.js",
"build-dev": "webpack --config ./webpack/development.js",
"lint": "npx eslint src",
"release": "bundle exec rake release:process"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unpoly/unpoly.git"
},
"keywords": [
"progressive enhancement",
"unobtrusive javascript",
"html over the wire",
"ujs",
"server-side",
"ssr"
],
"author": "Henning Koch <[email protected]> (https://makandra.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/unpoly/unpoly/issues"
},
"homepage": "https://unpoly.com",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "*",
"coffee-loader": "*",
"coffeescript": "*",
"css-loader": "*",
"eslint": "*",
"eslint-webpack-plugin": "*",
"express": "*",
"foreman": "*",
"jasmine": "*",
"jasmine-ajax": "*",
"jquery": "*",
"mini-css-extract-plugin": "*",
"nf": "*",
"null-loader": "*",
"opn": "*",
"rails-erb-loader": "*",
"sass": "*",
"sass-loader": "*",
"terser-webpack-plugin": "*",
"ts-loader": "*",
"typescript": "*",
"webpack": "*",
"webpack-cli": "*",
"webpack-dev-server": "*"
}
}