-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.05 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
{
"private": true,
"description": "Bloody enterprise logging tools",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna clean --yes && lerna run clean",
"build": "yarn clean && lerna run --stream build",
"build:es6": "lerna run --stream build:es6",
"build:es5": "lerna run --stream build:es5",
"bootstrap": "lerna bootstrap",
"test": "yarn flow && yarn flow:coverage && yarn lint && yarn jest",
"test:report": "yarn test && yarn coveralls:push",
"coveralls:push": "cat ./coverage/lcov.info | coveralls",
"jest": "BABEL_ENV=test NODE_ENV=test jest --no-cache -w 1 --detectOpenHandles --config jest.config.json",
"flow": "flow",
"flow:coverage": "flow-coverage-report -i 'packages/**/src/main/**/*.js' -t html -t json -t text --threshold 85",
"flow:fetch": "flow-typed install [email protected]",
"lint": "standard packages/**/src/**/*.js packages/**/test/**/*.js",
"lint:fix": "yarn lint --fix",
"docs": "docma -c ./docma.json",
"docs:view": "node scripts/docsapp.js",
"postupdate": "yarn && yarn bootstrap && yarn build && yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/qiwi/logwrap.git"
},
"keywords": [
"logwrap",
"logbind",
"logpipe"
],
"author": "Anton Golub <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-flow": "^7.8.3",
"@babel/register": "^7.8.6",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.4",
"@semantic-release/npm": "7.0.3",
"@semantic-release/release-notes-generator": "9.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"coveralls": "^3.0.9",
"docma": "^3.2.2",
"eslint": "^6.8.0",
"eslint-plugin-flowtype": "^4.6.0",
"flow-bin": "^0.120.1",
"flow-coverage-report": "^0.6.1",
"flow-remove-types": "^2.120.1",
"flow-typed": "^3.0.0",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"semantic-release": "17.0.4",
"semantic-release-monorepo": "7.0.1",
"semantic-release-monorepo-hooks": "2.9.5",
"semantic-release-plugin-decorators": "^2.1.1",
"standard": "^14.3.1"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
],
"globals": [
"jest",
"it",
"expect",
"describe",
"before",
"beforeAll",
"beforeEach",
"afterAll",
"after",
"afterEach",
"xdescribe",
"xit"
],
"rules": {
"use-flow-type": 1
},
"ignore": [],
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": true
}
}
},
"dependencies": {}
}