-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.12 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
{
"name": "tslint-no-focused-test",
"version": "0.1.2",
"description": "Custom TSLint plugin to check for focused tests",
"main": "dist/index.js",
"repository": "git@github.com:jasonmendes/tslint-no-focused-test.git",
"author": "Jason Mendes <jason@honua.co>",
"license": "MIT",
"private": false,
"scripts": {
"prepublish": "npm run lint && npm run build && npm run test",
"build": "tsc",
"tslint:fix": "tslint -c tslint.json 'src/**/*.ts' --fix",
"tslint:check": "tslint -c tslint.json 'src/**/*.ts'",
"prettier:fix": "prettier --config prettier.config.js --write 'src/**/*ts'",
"prettier:check": "prettier --config prettier.config.js --list-different 'src/**/*ts'",
"lint": "npm run tslint:check && npm run prettier:check",
"fix": "npm run tslint:fix && npm run prettier:fix",
"test": "tslint --test test"
},
"keywords": [
"jest",
"tslint",
"typescript",
"mocha",
"chai"
],
"peerDependencies": {
"tslint": ">=5.0.0"
},
"devDependencies": {
"@types/node": "^10.0.5",
"prettier": "^1.12.1",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
}
}