forked from unpoly/unpoly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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-test",
"version": "2.1.0",
"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.es5.min.js dist/unpoly.min.js",
"watch-dev": "webpack --watch --config ./webpack/development.js",
"build-dev": "webpack --config ./webpack/development.js",
"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",
"dependencies": {},
"devDependencies": {
"coffee-loader": "^2.0.0",
"coffeescript": "*",
"css-loader": "^3.6.0",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"fibers": "^5.0.0",
"jasmine": "^2.99.0",
"jasmine-ajax": "^4.0.0",
"jasmine-core": "^2.99.0",
"jquery": "^3.5.1",
"mini-css-extract-plugin": "^0.8.2",
"node-sass": "^4.14.1",
"null-loader": "^4.0.1",
"opn": "^6.0.0",
"process-exists": "^4.1.0",
"rails-erb-loader": "^5.5.2",
"sass": "^1.32.4",
"sass-loader": "^8.0.2",
"ts-loader": "^8.0.14",
"tslib": "^2.3.0",
"typescript": "^4.1.3",
"webpack": "^5.15.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "*"
}
}