forked from Ecosystem-Infra/wpt-results-analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 944 Bytes
/
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
{
"name": "wpt-results-analysis",
"description": "web-platform-tests results analysis",
"version": "0.0.1",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/ecosystem-infra/wpt-results-analysis.git"
},
"scripts": {
"install": "git clone --bare https://github.com/ecosystem-infra/wpt-results.git && git --git-dir=wpt-results.git remote set-url --push origin [email protected]:ecosystem-infra/wpt-results.git || git --git-dir=wpt-results.git fetch --tags",
"lint": "eslint browser-specific-failures.js lib/browser-specific.js",
"test": "npm run lint && npm run test-unit",
"test-unit": "mocha -u bdd ./test/*.js"
},
"dependencies": {
"flags": "0.1.3",
"moment": "^2.24.0",
"node-fetch": "2.6.0",
"nodegit": "0.26.3"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"mocha": "^7.0.0"
}
}