-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.55 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
{
"name": "@bblabs/mindfulness",
"version": "1.5.2",
"description": "Simple logging and metrics interfaces",
"repository": "https://github.com/bombbomb/mindfulness",
"main": "dist/src/index.js",
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"test-watch": "jest --watch",
"build": "tsc",
"build-watch": "tsc --watch",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags",
"eslint": "eslint src/**/*.ts",
"eslint-ci": "eslint --quiet src/**/*.ts"
},
"keywords": [
"logging",
"metrics"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/debug": "0.0.31",
"@types/jest": "^22.0.1",
"@types/nock": "^9.3.1",
"@types/request-promise-native": "^1.0.17",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.19.1",
"jest": "^26.6.3",
"nock": "^11.7.0",
"ts-jest": "^26.4.4",
"ts-node": "^7.0.1",
"typescript": "^3.9.7",
"typescript-eslint-parser": "^21.0.2"
},
"jest": {
"testEnvironment": "node",
"transform": {
".ts": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"<rootDir>/dist/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"debug": "^4.1.1",
"lodash": "^4.17.21",
"request": "^2.88.0",
"request-promise-native": "^1.0.8"
}
}