This repository has been archived by the owner on Dec 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
120 lines (120 loc) · 3.49 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"ava": {
"concurrency": 5,
"failFast": false,
"files": [
"dist/tests/**/*.js",
"!dist/tests/**/fixtures/**/*.js"
],
"timeout": "1m"
},
"dependencies": {
"@destinationstransfers/ntp": "^2.0.0",
"@hint/configuration-all": "^1.0.7",
"@octokit/rest": "^16.35.0",
"applicationinsights": "^1.6.0",
"azure-sb": "^0.11.1",
"azure-storage": "^2.10.3",
"body-parser": "^1.19.0",
"connect-mongo": "^3.0.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.17.0",
"globby": "^10.0.1",
"handlebars": "^4.5.3",
"hint": "^5.4.1",
"lodash": "^4.17.15",
"mdn-browser-compat-data": "1.0.0",
"method-override": "^3.0.0",
"moment": "^2.24.0",
"mongodb-lock": "^1.0.1",
"mongoose": "^5.7.13",
"multiparty": "^4.2.1",
"node-schedule": "^1.3.2",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"pkill": "^2.0.0",
"puppeteer": "^2.0.0",
"request": "^2.88.0",
"shx": "^0.3.2",
"strip-bom": "^4.0.0",
"strip-json-comments": "^3.0.1",
"tar": "^5.0.5",
"tri": "^1.0.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/azure": "^0.9.20",
"@types/chrome": "^0.0.91",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/multiparty": "^0.0.32",
"@types/node": "^12.12.14",
"@types/passport": "^1.0.2",
"@types/proxyquire": "^1.3.28",
"@types/puppeteer": "^2.0.0",
"@types/sinon": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.9.0",
"ava": "^2.4.0",
"copyfiles": "^2.1.1",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-markdown": "^1.0.1",
"eventemitter2": "^5.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"proxyquire": "2.0.0",
"rimraf": "^3.0.0",
"shelljs": "^0.8.3",
"sinon": "^7.5.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.2"
},
"greenkeeper": {
"commitMessages": {
"dependencyUpdate": "Chore: Update `${dependency}` to `v${version}`",
"devDependencyUpdate": "Chore: Update `${dependency}` to `v${version}`",
"lockfileUpdate": "Chore: Update lockfile ${lockfilePath}"
},
"ignore": [
"@types/node"
]
},
"main": "./dist/src/index.js",
"nyc": {
"branches": 80,
"cache": true,
"check-coverage": true,
"functions": 80,
"include": [
"dist/src/**/*.js"
],
"instrument": true,
"lines": 85,
"reporter": [
"lcov",
"text"
],
"sourceMap": true,
"statements": 85
},
"private": true,
"scripts": {
"ava": "ava",
"build": "npm run clean && npm-run-all build:*",
"build:assets": "copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist",
"build:ts": "tsc --outDir dist",
"clean": "rimraf dist",
"lint": "npm-run-all lint:*",
"lint:js": "eslint --ext ts --ignore-pattern dist .",
"online-service": "node ./dist/src/bin/online-service",
"test": "npm run lint && npm run build && nyc ava",
"watch:ts": "npm run build:ts -- --watch",
"steps": "npm run step1 && npm run step2",
"step1": "rimraf node_modules/hint && rimraf gitrepos/ && mkdir gitrepos && cd gitrepos && git clone https://github.com/webhintio/hint.git && cd hint && cd packages && cd hint && npm install && npm install @types/is-ci @types/proxyquire && npm run build",
"step2": "shx mv gitrepos/hint/packages/hint node_modules/"
},
"version": "0.16.0"
}