-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 848 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
39
40
41
42
{
"name": "prettierify",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"test": "mocha **/*.spec.js"
},
"preferGlobal": true,
"bin": {
"prettierify": "./bin/prettierify.js"
},
"author": "",
"license": "ISC",
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --write",
"tslint --fix -c ./tslint.json 'src/**/*.ts'",
"git add"
]
},
"devDependencies": {
"@types/prettier": "^1.16.4",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"mocha": "^5.2.0",
"ncp": "^2.0.0",
"rimraf": "^2.6.3"
},
"dependencies": {
"lodash": "^4.17.11",
"minimist": "^1.2.0",
"npm": "^6.9.0",
"prettier": "^1.17.1"
}
}