-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "@plentymarkets/terra-prettier-config",
"version": "0.1.0",
"description": "custom prettier configuration",
"main": ".prettierrc.js",
"scripts": {
"copy": "rm -rf dist && gulp copy",
"release": "gulp updateVersion && npm run copy && npm publish dist --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plentymarkets/terra-prettier-config.git"
},
"keywords": [
"prettier",
"configuration",
"config",
"terra"
],
"author": "plentymarkets",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/plentymarkets/terra-prettier-config/issues"
},
"homepage": "https://github.com/plentymarkets/terra-prettier-config#readme",
"peerDependencies": {
"prettier": "2.1.1"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-prompt": "^1.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"prettier": "2.1.1",
"semver": "^7.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
}
}