-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.44 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.44 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "bash-utils",
"version": "0.1.0",
"private": true,
"description": "Bash Utils Monorepo",
"main": "index.js",
"scripts": {
"build": "lerna run build",
"clean": "sh helpers/clean.sh",
"docs": "sh helpers/docs.sh",
"eslint-find-rules": "eslint-find-rules -u .eslintrc.js || true",
"lint": "sh helpers/lint.sh",
"postinstall": "lerna bootstrap",
"publish": "sh helpers/publish.sh",
"run-checks": "bash helpers/run_checks.sh",
"sonar-run": "lerna run sonar",
"sonar-start-docker": "docker run -d --name sonarqube -p 9000:9000 -p 9092:9092 sonarqube",
"test": "npm run build && lerna run test"
},
"author": "Ignacio Carbajo <icarbajop@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@commitlint/cli": "^7.2.0",
"@commitlint/config-conventional": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"conventional-changelog-cli": "^2.0.5",
"eslint": "^5.6.0",
"eslint-find-rules": "^3.3.1",
"eslint-plugin-eslint-comments": "^3.0.1",
"eslint-plugin-flowtype": "^2.50.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.81.0",
"flow-coverage-report": "^0.6.0",
"husky": "^1.0.0-rc.14",
"jest": "^23.6.0",
"jest-coverage-ratchet": "^0.2.3",
"lerna": "^3.4.0",
"prettier": "^1.14.3",
"sonar-scanner": "^3.1.0",
"stylelint": "^9.6.0",
"stylelint-order": "^1.0.0",
"ts-node": "^7.0.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "sh helpers/gitHooks/precommit.sh",
"pre-push": "sh helpers/gitHooks/prepush.sh"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"flow-coverage-report": {
"globExcludePatterns": [
"**/node_modules/**",
"**/docs/**",
"**/build/**",
"**/__tests__/**"
],
"flowCommandPath": "./node_modules/.bin/flow",
"globIncludePatterns": [
"packages/**/src/**/*.js"
],
"threshold": 91,
"reportTypes": [
"html"
]
}
}