forked from ammanvedi/typescript-npm-module-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 762 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 762 Bytes
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
{
"name": "update-package-name",
"author": "UPDATE-you@email.com",
"keywords": [
"UPDATE"
],
"license": "UPDATE",
"version": "1.0.0",
"description": "Description",
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "./node_modules/.bin/tsc"
},
"files": [
"src/**/*",
"!src/test**/*",
"dist/**/*"
],
"main": "./dist",
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}