forked from cds-snc/logDriver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 KB
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
{
"name": "@cdssnc/logdriver",
"version": "0.0.2",
"description": "CDS Log Driver",
"main": "dist/logger.js",
"umd:main": "dist/logger.umd.js",
"module": "dist/index.mjs",
"source": "src/index.mjs",
"unpkg": "dist/logger.js",
"files": [
"dist"
],
"scripts": {
"prepare": "microbundle",
"build": "microbundle --no-compress",
"dev": "microbundle watch",
"lint": "eslint src/*.js",
"test": "jest",
"release": "release-it -n --no-git.requireUpstream"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test && lint-staged",
"pre-push": "npm test"
}
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"microbundle": "^0.11.0",
"prettier": "^1.16.4",
"release-it": "^10.3.1"
},
"dependencies": {
"@babel/plugin-syntax-jsx": "^7.2.0",
"@google-cloud/error-reporting": "^0.6.1",
"stackdriver-errors-js": "^0.5.0",
"stacktrace-js": "^2.0.0",
"uuid": "^3.3.2"
}
}