This repository has been archived by the owner on Sep 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.97 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
{
"name": "@mozilla-frontend-infra/perf-goggles",
"version": "3.0.0",
"main": "build/index.js",
"keywords": [
"mozilla",
"treeherder",
"perfherder"
],
"repository": "mozilla-frontend-infra/perf-goggles",
"author": "Armen Zambrano G. <[email protected]>",
"license": "MPL-2.0",
"scripts": {
"build": "webpack --mode production",
"lint": "eslint --cache --format codeframe --ext mjs,jsx,js src test",
"test": "mocha",
"coverage": "nyc -r lcov -r text yarn test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"precommit": "lint-staged",
"prepare": "yarn build",
"publish-to-verdaccio": "yarn build && npm publish --registry http://localhost:4873"
},
"files": [
"build"
],
"nyc": {
"include": [
"src/**"
]
},
"lint-staged": {
"{src,test}/*.js*": [
"yarn lint"
]
},
"devDependencies": {
"@neutrinojs/airbnb-base": "9.0.0-rc.3",
"@neutrinojs/library": "9.0.0-rc.3",
"@neutrinojs/mocha": "9.0.0-rc.3",
"babel-polyfill": "^6.26.0",
"coveralls": "3.0.6",
"eslint": "^5",
"fetch-mock": "7.3.9",
"husky": "3.0.3",
"lint-staged": "9.2.1",
"mocha": "^6",
"neutrino": "9.0.0-rc.3",
"nyc": "14.1.1",
"webpack": "^4",
"webpack-cli": "^3"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"lodash.isequal": "^4.5.0",
"query-string": "^6.1.0"
},
"description": "[![Build Status](https://travis-ci.org/mozilla-frontend-infra/perf-goggles.svg?branch=master)](https://travis-ci.org/mozilla-frontend-infra/perf-goggles) [![Coverage Status](https://coveralls.io/repos/github/mozilla-frontend-infra/perf-goggles/badge.svg?branch=coverage)](https://coveralls.io/github/mozilla-frontend-infra/perf-goggles?branch=coverage)",
"bugs": {
"url": "https://github.com/mozilla-frontend-infra/perf-goggles/issues"
},
"homepage": "https://github.com/mozilla-frontend-infra/perf-goggles#readme",
"directories": {
"test": "test"
}
}