-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.07 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
{
"name": "tslint-gandalf-rules",
"version": "0.0.10",
"description": "You shall not pass",
"main": "index.js",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/m-przybylski/tslint-gandalf-rules"
},
"scripts": {
"build": "tsc",
"test": "jest",
"version": "git add -A src",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" \"src/**/*.json\"",
"prepublish": "yarn build"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"tslint": "^5.10.0",
"typescript": "^3.3.3"
},
"dependencies": {
"tsutils": "^3.8.0"
},
"peerDependencies": {
"tslint": "^5.0.0"
},
"author": "Maciej Przybylski",
"license": "MIT",
"keywords": [
"tslint",
"typescript"
],
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"preset": "ts-jest",
"globals": {
"ts-jest": {}
},
"testMatch": [
"**/**/*.spec.ts"
],
"testEnvironment": "node"
}
}