-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.05 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
68
69
{
"name": "lakka",
"version": "3.0.0",
"description": "lakka. An asynchronous request accelerator.",
"main": "./app/main.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/martinkr/lakka.git"
},
"homepage": "https://github.com/martinkr/lakka",
"issues": "https://github.com/martinkr/lakka/issues",
"author": "Martin Krause <[email protected]> (http://martinkr.github.io)",
"keywords": [],
"scripts": {
"prebuild": "yarn test",
"build": "yarn webpack ",
"eslint": "npx eslint ./app/**/*.js",
"mocha": "NODE_ENV=test npx mocha --reporter spec",
"nyc": "NODE_ENV=test npx nyc --clean npx mocha",
"coverage": "npx nyc check-coverage --lines 100 --functions 100 --branches 100 --statements 100",
"report": "NODE_ENV=test npx nyc report --reporter=lcov --reporter=html",
"test": "yarn eslint && yarn nyc && yarn report && yarn coverage",
"mocha-watch": "NODE_ENV=test npx mocha --reporter min -w",
"eslint-watch": "npx esw --watch ./app/**/*.js",
"webpack": "npx webpack --mode production --env production"
},
"nyc": {
"reporter": [
"lcov",
"text",
"html"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"esm": "^3.2.25"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.15.3",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-mockable-imports": "^1.8.0",
"babel-preset-minify": "^0.5.1",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-watch": "7.0.0",
"expose-loader": "^3.0.0",
"fs-extra-plus": "0.5.22",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.58.0",
"webpack-cli": "^4.9.0"
},
"bugs": {
"url": "https://github.com/martinkr/lakka/issues"
},
"directories": {
"test": "test"
}
}