-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "multiline-import",
"version": "0.1.5",
"description": "TSLint rules to check multiline imports",
"main": "dist/multiLineImportRule.js",
"homepage": "https://github.com/SinimaWath/tslint-multi-line-import",
"repository": {
"type": "git",
"url": "https://github.com/SinimaWath/tslint-multi-line-import"
},
"scripts": {
"build": "tsc --p tsconfig.json",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"tslint",
"multiline-import",
"import",
"rules"
],
"author": {
"name": "Vladislav Tarasov",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.0.8",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"dependencies": {
"tslint": "^5.17.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/**/*.test.(ts|tsx)"
],
"testEnvironment": "node"
}
}