-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 987 Bytes
/
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
{
"name": "@movable/ember-cli-deploy-gitlab-scm-data-generator",
"description": "Generate SCM data for `ember-cli-deploy` on GitLab",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:movableink/ember-cli-deploy-gitlab-scm-data-generator.git",
"author": "Alex LaFroscia <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint .",
"release": "standard-version"
},
"dependencies": {
"core-object": "^3.1.5",
"simple-git": "^1.130.0"
},
"devDependencies": {
"@movable/eslint-config": "^0.5.0",
"@movable/eslint-config-node": "^0.4.1",
"@movable/prettier-config": "^0.3.0",
"husky": "^4.2.1",
"lint-staged": "^10.0.2",
"standard-version": "^7.1.0"
},
"resolutions": {
"minimist": "^1.2.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{json,md}": "prettier --write"
}
}