-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "devflow-client",
"version": "1.1.32",
"repository": "git@github.com:efimk-lu/devflow-lib.git",
"description": "A demo nodeJS client library used to demonstrate CI/CD principles. You can use it as a template.",
"main": "index.js",
"scripts": {
"test": "nyc mocha -r flow-remove-types/register",
"checks": "./scripts/checks.sh",
"lint-staged": "lint-staged",
"prettier:format": "prettier --write",
"coverage_ci": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t 2326b9d9-d76a-4f56-9092-347a60eec947",
"flow:build": "flow-remove-types ./ -d ./",
"flow": "flow",
"lint": "eslint **/*.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^3.0.0",
"flow-bin": "^0.83.0",
"flow-remove-types": "^1.2.3",
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.14.3"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run checks",
"postcommit": "git update-ingit stdex --again"
}
},
"lint-staged": {
"*.{js}": [
"prettier -l"
]
}
}