-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 KB
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
{
"name": "kvikk-fix",
"version": "0.0.4",
"description": "Apply prettier to all TypeScript files in your project",
"main": "index.js",
"bin": {
"kvikk-fix": "./bin/kvikk-fix"
},
"scripts": {
"test": "jest",
"lint": "tslint --project tsconfig.json",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kourge/kvikk-fix.git"
},
"keywords": [
"typescript",
"prettier"
],
"author": "Wil Lee <kourge@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kourge/kvikk-fix/issues"
},
"homepage": "https://github.com/kourge/kvikk-fix#readme",
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/node": "^8.0.28",
"@types/prettier": "^1.6.1",
"jest": "^21.0.2",
"memory-fs": "^0.4.1",
"prettier": "^1.7.0",
"ts-jest": "^21.0.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"peerDependencies": {
"prettier": ">=1.6.0",
"typescript": ">=2.1.0"
}
}