forked from sorenbronsted/webui.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "webui.js",
"description": "Mvc implementation for SPA in a browser",
"version": "6.0.7",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/sorenbronsted/webui.js"
},
"files": [
"lib/"
],
"directories": {
"doc": "doc",
"test": "test/js",
"lib": "lib"
},
"scripts": {
"test": "mocha -r jsdom-global/register test/js",
"coverage": "SPAWN_WRAP_SHIM_ROOT=. nyc --reporter=html --report-dir=build/coverage mocha -r jsdom-global/register test/js",
"bundle": "webpack-cli",
"doc": "node node_modules/jsdoc/jsdoc -c jsdoc.json"
},
"author": {
"name": "Søren Brønsted",
"email": "[email protected]"
},
"license": "GPL3",
"devDependencies": {
"jsdoc": "^3.6.5",
"jsdom": "12.2.0",
"jsdom-global": "3.0.2",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"collect.js": "^4.28.0",
"moment": "^2.27.0",
"numeral": "^2.0.6",
"tiny-date-picker": "^3.2.8",
"uri-js": "^4.2.2"
}
}