-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.9 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "bristol-stackdriver",
"version": "0.2.0",
"description": "",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "tslint --project tsconfig.json --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
"cover": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"precommit": "lint-staged",
"publish:pre": "npm run lint && npm run build && npm run cover",
"publish:post": "npm publish && git push --follow-tags",
"release:prerelease": "npm run publish:pre && npm version prerelease && npm run publish:post",
"release:patch": "npm run publish:pre && npm version patch && npm run publish:post",
"release:minor": "npm run publish:pre && npm version minor && npm run publish:post",
"release:major": "npm run publish:pre && npm version major && npm run publish:post"
},
"repository": {
"type": "git",
"url": "https://github.com/taxfyle/bristol-stackdriver.git"
},
"files": [
"lib",
"LICENSE.md",
"README.md"
],
"directories": {
"lib": "lib"
},
"keywords": [],
"author": "Taxfyle Engineering <devops@taxfyle.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/taxfyle/bristol-stackdriver/issues"
},
"homepage": "https://github.com/taxfyle/bristol-stackdriver#readme",
"dependencies": {
"destroy-circular": "^1.1.0",
"lodash.throttle": "^4.1.1",
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/lodash.throttle": "^4.1.3",
"@types/node": "^12.11.2",
"@types/prettier": "^1.10.0",
"@types/rimraf": "^2.0.2",
"@types/uuid": "^3.4.3",
"axios": "^0.19.0",
"bristol": "^0.4.0",
"coveralls": "^3.0.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.11.1",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3",
"ts-jest": "^24.1.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.6.4",
"uuid": "^3.2.1",
"yenv": "^2.1.0"
},
"lint-staged": {
"*.ts": [
"tslint --fix --project tsconfig.json",
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|tsx|js)$",
"collectCoverageFrom": [
"src/**/*.ts"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"__tests__"
],
"modulePaths": [
"src"
],
"coverageDirectory": "<rootDir>/coverage",
"transform": {
"\\.(ts|tsx)": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"globals": {}
},
"prettier": {
"semi": false,
"singleQuote": true
}
}