-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
72 lines (72 loc) · 1.72 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "tslint-config-standard",
"version": "9.0.0",
"description": "A TSLint config for JavaScript Standard Style",
"main": "tslint.js",
"files": [
"tslint.js",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "eslint \"*.js\" \"test/*.js\"",
"prettier": "prettier --write",
"format": "npm run prettier -- \"{.,test}/*.{js,md,yml,yaml}\"",
"test:gen": "GENERATE_ASSETS=true blue-tape test/index.js",
"test:spec": "blue-tape test/index.js | tap-spec",
"test": "npm run lint && npm run test:spec"
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/tslint-config-standard.git"
},
"keywords": [
"tslint",
"config",
"standard",
"standardjs",
"typescript",
"ts"
],
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/blakeembrey/tslint-config-standard/issues"
},
"homepage": "https://github.com/blakeembrey/tslint-config-standard",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,yml,yaml}": [
"npm run prettier",
"git add"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^12.12.5",
"blue-tape": "^1.0.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-config-standard": "^14.1.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"standard": "^14.3.1",
"tap-spec": "^5.0.0",
"tslint": "^5.8.0",
"typescript": "^3.6.4"
},
"dependencies": {
"tslint-eslint-rules": "^5.3.1"
}
}