-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "typescript-template",
"version": "1.0.0",
"description": "A Github template for creating typescript projects",
"private": true,
"keywords": [
"template",
"typescript"
],
"author": "John Martel <jonathan.martel@coglinc.ca>",
"repository": {
"type": "git",
"url": "git+https://github.com/johnmartel/typescript-template.git"
},
"bugs": {
"url": "https://github.com/johnmartel/typescript-template/issues"
},
"homepage": "https://github.com/johnmartel/typescript-template#readme",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"compile": "tsc",
"compile:clean": "npm run clean && tsc",
"lint": "eslint src __tests__ --max-warnings 0 --ext .ts",
"lint:fix": "eslint src __tests__ --ext .ts --fix",
"test": "jest --coverage",
"test:ci": "jest --coverage --ci"
},
"devDependencies": {
"@jest/types": "26.6.2",
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "3.3.1",
"jest": "26.6.3",
"jest-junit": "12.0.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "26.5.0",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"dependencies": {
"@types/node": "14.14.25"
}
}