-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "npm-typescript-template",
"version": "1.0.0",
"description": "Blank NPM package template with TypeScript + Jest support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "ts-node-dev src",
"start": "npm run dev",
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"publish": "tsc && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denkan/npm-typescript-template.git"
},
"keywords": [
"npm",
"package",
"template",
"typescript",
"jest"
],
"author": "Dennis Nyström",
"license": "MIT",
"bugs": {
"url": "https://github.com/denkan/npm-typescript-template/issues"
},
"homepage": "https://github.com/denkan/npm-typescript-template#readme",
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.2"
}
}