-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
31 lines (31 loc) · 984 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
29
30
31
{
"name": "results-analysis",
"description": "web-platform-tests results analysis",
"version": "0.0.1",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/web-platform-tests/results-analysis.git"
},
"scripts": {
"install": "git clone --bare https://github.com/web-platform-tests/results-analysis-cache.git && git --git-dir=results-analysis-cache.git remote set-url --push origin [email protected]:web-platform-tests/results-analysis-cache.git || git --git-dir=results-analysis-cache.git fetch --tags",
"lint": "eslint .",
"test": "npm run lint && npm run test-unit",
"test-unit": "mocha -u bdd ./test/*.js"
},
"dependencies": {
"flags": "0.1.3",
"moment": "2.30.1",
"node-fetch": "2.7.0",
"nodegit": "0.28.0-alpha.28"
},
"devDependencies": {
"chai": "4.5.0",
"eslint": "8.57.1",
"eslint-config-google": "0.14.0",
"mocha": "10.8.2"
},
"engines": {
"node": "^18"
}
}