-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.69 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
{
"name": "node-syslogger",
"engines": {
"node": ">= 6.9.0"
},
"main": "./lib/main.js",
"types:": "./lib/src/index.d.ts",
"version": "0.1.16",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vlastoun/syslogger.git"
},
"keywords": ["syslogger", "winston", "syslog"],
"bugs": {
"url": "https://github.com/vlastoun/syslogger/issues"
},
"homepage": "https://github.com/vlastoun/syslogger#readme",
"description": "",
"scripts": {
"clean": "rimraf lib coverage",
"test": "jest",
"test:watch": "jest --watch",
"precommit": "npm run prettier:staged && npm run test",
"prettier": "pretty-quick",
"prettier:staged": "pretty-quick --staged",
"dev": "npm run clean && cross-env NODE_ENV=development backpack dev",
"build": "cross-env NODE_ENV=production backpack build",
"prepublish": "npm run test && npm run build"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^8.0.28",
"@types/winston": "^2.3.9",
"@types/winston-syslog": "^1.0.0",
"babel-preset-env": "^1.7.0",
"backpack-core": "^0.7.0",
"cross-env": "^5.1.5",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lerna": "^2.11.0",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.6",
"ts-loader": "3.5.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"winston": "^2.4.2",
"winston-syslog": "1.2.6"
}
}