forked from evergreen-ci/evergreen.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "evergreen.js",
"scripts": {
"build": "tsc -d",
"test": "jest",
"coverage": "jest --coverage",
"lint": "tslint -c tslint.json src/*.ts",
"lint-fix": "tslint --fix -c tslint.json src/*.ts",
"clear-jest-cache": "jest --clearCache"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"verbose": true,
"roots": [
"./src"
]
},
"dependencies": {
"@types/js-yaml": "^3.12.1",
"@types/request": "^2.48.2",
"class-transformer": "^0.2.3",
"js-yaml": "^3.13.1",
"request": "^2.88.0",
"tslib": "^1.10.0"
},
"description": "JavaScript/TypeScript library for the Evergreen REST API",
"version": "1.1.3",
"main": "lib/evergreen.js",
"types": "src/evergreen.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/evergreen-ci/evergreen.js.git"
},
"keywords": [
"evergreen"
],
"author": "John Liu",
"license": "ISC",
"bugs": {
"url": "https://github.com/evergreen-ci/evergreen.js/issues"
},
"homepage": "https://github.com/evergreen-ci/evergreen.js#readme"
}