-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "require-bro",
"description": "require for browsers",
"version": "0.3.1",
"files": [
"lib"
],
"author": "Codenautas <[email protected]>",
"repository": "codenautas/require-bro",
"license": "MIT",
"contributors": [
{
"name": "Emilio Platzer",
"email": "[email protected]"
}
],
"main": "lib/require-bro.js",
"dependencies": {},
"devDependencies": {
"express": "~4.18.2",
"istanbul": "~0.4.5",
"mocha": "~10.2.0",
"puppeteer": "~19.11.1",
"best-globals": "~1.1.0",
"discrepances": "~0.2.8",
"serve-content": "~0.3.18",
"server4test": "~0.8.7",
"type-store": "~0.3.1"
},
"engines": {
"node": ">= 14"
},
"scripts": {
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test": "mocha --report lcovonly -- --reporter spec --check-leaks test/",
"test-h": "node server/pdemo-server.js --use-casper --coverage --hold",
"start": "node server/pdemo-server.js"
},
"qa-control": {
"package-version": "0.3.0",
"coverage": 0,
"run-in": "client",
"stability": "extending",
"type": "lib"
}
}