-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "travis-builds-reporter-core",
"version": "0.2.0",
"description": "Core module of the travis-builds-reporter project",
"main": "src/index.js",
"types": "src/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"alldocs": "npm run doc && npm run doc2md",
"coverage": "jest --collectCoverage=true --coverageReporters=html --coverageReporters=lcov --coverageReporters=text",
"lint": "xo",
"test": "xo && jest && tsd",
"posttest": "node example/example.js"
},
"keywords": [
"builds",
"ci",
"travis",
"travis-ci",
"travis-builds-reporter"
],
"repository": {
"type": "git",
"url": "git://github.com/niktekusho/travis-builds-reporter.git"
},
"author": {
"name": "Nicola Dal Maso",
"url": "https://github.com/niktekusho/"
},
"license": "MIT",
"dependencies": {
"axios": "^0.18.1"
},
"engines": {
"node": ">=8"
},
"xo": false,
"tsd": {
"directory": "test"
},
"jest": {
"testEnvironment": "node"
}
}