-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "custom-tslint-rules",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akleemans/custom-tslint-rules.git"
},
"devDependencies": {
"@types/jest": "^24.0.24",
"jest": "^24.9.0",
"ts-jest": "^24.2.0"
},
"dependencies": {
"@types/node": "^12.12.21",
"codelyzer": "^5.2.1",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/**/*.spec.(ts|tsx)"
],
"testEnvironment": "node"
},
"author": "Adrianus Kleemans",
"license": "MIT",
"bugs": {
"url": "https://github.com/akleemans/custom-tslint-rules/issues"
},
"homepage": "https://github.com/akleemans/custom-tslint-rules#readme"
}