forked from KnapsackPro/knapsack-pro-core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.18 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@knapsack-pro/core",
"version": "1.6.1",
"description": "Knapsack Pro Core library splits tests across CI nodes and makes sure that tests will run in optimal time on each CI node. This library gives core features like communication with KnapsackPro.com API. This library is a dependency for other projects specific for particular test runner.",
"keywords": [
"knapsack",
"knapsack pro",
"test suite parallelisation",
"parallelisation",
"testing",
"test",
"automation",
"CI"
],
"author": "Knapsack Pro <[email protected]> (https://knapsackpro.com)",
"contributors": [
{
"name": "Artur Trzop",
"email": "[email protected]"
},
{
"name": "Rafał Trzop",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"start": "gulp",
"build": "gulp build",
"lint": "npm run lint:js && npm run lint:ts",
"lint:js": "eslint .",
"lint:ts": "tslint --project . --format stylish",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"doctoc": "doctoc --title \"## Table of Contents\" README.md"
},
"files": [
"/lib"
],
"homepage": "https://knapsackpro.com",
"repository": {
"type": "git",
"url": "https://github.com/KnapsackPro/knapsack-pro-core-js.git"
},
"bugs": {
"url": "https://github.com/KnapsackPro/knapsack-pro-core-js/issues"
},
"dependencies": {
"axios": "0.18.1",
"axios-retry": "^3.1.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"@types/jest": "^23.3.11",
"@types/node": "^10.12.18",
"del": "^3.0.0",
"doctoc": "^1.4.0",
"eslint": "^5.11.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"gulp": "^4.0.0",
"gulp-typescript": "^5.0.0",
"jest": "^24.8.0",
"prettier": "1.15.3",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"prettier-tslint": "^0.4.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.2"
}
}