-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "prettier-tslint",
"description":
"Formats your TypeScript using Prettier followed by tslint --fix",
"version": "0.0.0-development",
"author": "Lucas Azzola <@azz>",
"license": "MIT",
"main": "dist",
"bin": "./bin/prettier-tslint.js",
"files": ["bin", "dist"],
"dependencies": {
"chalk": "^2.4.0",
"globby": "^8.0.1",
"ignore": "^3.3.7",
"require-relative": "^0.8.7",
"tslint": "^5.9.1",
"yargs": "^11.0.0"
},
"peerDependencies": {
"prettier": "^1.7.4",
"typescript": "^2.5.3 || ^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^21.2.1",
"prettier": "1.12.1",
"semantic-release": "^8.0.3",
"typescript": "~2.8.3"
},
"scripts": {
"lint": "eslint .",
"test": "jest",
"build": "babel --copy-files --out-dir dist src",
"semantic-release":
"semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/azz/prettier-tslint.git"
}
}