-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.06 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
{
"name": "camel-cli",
"version": "0.2.0",
"private": true,
"description": "CLI tool to use the Camel CI/CD environment.",
"author": "Camel CI",
"license": "MIT",
"main": "src/cli.js",
"engines": {
"node": ">=9.0.0"
},
"bin": {
"camel": "bin/camel.js"
},
"scripts": {
"pretty": "prettier --write src/**/*.js templates/**/*.yml",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src/**/*.js",
"lint:staged": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"templates/**/*.yml": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-node": "^9.0.1",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"prettier": "^1.17.0"
},
"dependencies": {
"commander": "^2.20.0",
"fs-extra": "^8.0.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.11"
}
}