-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.46 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
{
"name": "@aboviq/kollektor",
"version": "0.0.0-development",
"description": "Generic file collector, useful for mono repos and microservices",
"main": "src/index.js",
"files": [
"src/index.js"
],
"scripts": {
"test": "xo && jest --coverage",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">= 8.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aboviq/kollektor.git"
},
"keywords": [
"files",
"kollektor",
"microservices",
"monorepo"
],
"author": "Aboviq AB <dev@aboviq.com> (https://www.aboviq.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aboviq/kollektor/issues"
},
"homepage": "https://github.com/aboviq/kollektor#readme",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@commitlint/travis-cli": "^8.2.0",
"eslint-plugin-jest": "^23.1.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"semantic-release": "^15.13.31",
"xo": "^0.25.3"
},
"xo": {
"parserOptions": {
"sourceType": "script"
},
"prettier": true,
"plugins": [
"jest"
],
"extends": [
"plugin:jest/recommended"
],
"rules": {
"strict": [
"error",
"safe"
],
"jest/valid-expect": 0,
"jest/consistent-test-it": [
"error"
],
"jest/valid-describe": [
"error"
]
}
},
"dependencies": {
"@aboviq/readdir-recursive": "^1.3.0",
"matcher": "^2.1.0"
},
"publishConfig": {
"access": "public"
}
}