-
Notifications
You must be signed in to change notification settings - Fork 729
/
package.json
36 lines (36 loc) · 1.12 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
{
"name": "w2ui",
"version": "2.0.0",
"title": "W2UI: New JavaScript UI Library",
"description": "JavaScript UI library for development of data-driven web applications. Includes layout, grid, toolbar, sidebar, tabs, forms, fields, popup, overlay",
"license": "MIT",
"repository": "https://github.com/vitmalina/w2ui",
"dependencies": {
"jquery": ">=3.5"
},
"main": "dist/w2ui.js",
"style": "dist/w2ui.css",
"scripts": {
"start": "run-script-os",
"start:win32": "start http://localhost:3500 & python3 -m http.server 3500",
"start:nix": "open http://localhost:3500; python3 -m http.server 3500",
"test": "eslint src demos --ext js"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"del": "^6.0.0",
"eslint": "^8.25.0",
"eslint-plugin-align-assignments": "^1.1.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-header": "^2.0.9",
"gulp-iconfont": "^11.0.0",
"gulp-less": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-uglify": "^3.0.2",
"run-script-os": "^1.1.6"
}
}