-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.88 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": "nightharbor",
"description": "configure batch execution of lighthouse simply",
"version": "0.7.3",
"author": "Yoshiyuki Kato",
"bin": {
"nightharbor": "bin/cli.js",
"nhb": "bin/cli.js"
},
"dependencies": {
"cli-progress": "^2.0.0",
"commander": "^2.17.0",
"lighthouse": "^3.0.1",
"puppeteer": "^1.7.0"
},
"devDependencies": {
"@types/cli-progress": "^1.8.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.10.0",
"@types/power-assert": "^1.5.0",
"@types/puppeteer": "^1.6.3",
"espower-typescript": "^9.0.1",
"fs-extra": "^7.0.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"power-assert": "^1.6.0",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"keywords": [
"lighthouse",
"multiple targets",
"reporting"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"espower-typescript/guess"
],
"reporter": [
"text",
"lcov"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "https://github.com/YoshiyukiKato/nightharbor"
},
"scripts": {
"build": "$(npm bin)/tsc --build tsconfig.json",
"watch": "$(npm bin)/tsc --build tsconfig.json -w",
"test": "$(npm bin)/nyc $(npm bin)/mocha --timeout 600000 test/**/*.test.ts",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"release": "npm run before-release && npm publish dist && npm run after-release ",
"release-a": "npm run before-release && npm publish dist --tag alpha && npm run after-release ",
"release-b": "npm run before-release && npm publish dist --tag beta && npm run after-release ",
"before-release": "npm run build && cp {README.md,package.json} dist",
"after-release": "rm dist/{README.md,package.json}"
}
}