-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
52
53
54
55
56
57
{
"name": "@thedevdesigner/helper-modules",
"version": "1.0.7",
"private": false,
"description": "Collection of commonly used helper modules written in TypeScript",
"main": "./dist/index.js",
"type": "commonjs",
"typings": "./dist/@types",
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"pre-compile": "rm -rf ./dist",
"compile": "npx tsc",
"update_version:major": "npm version major",
"update_version:minor": "npm version minor",
"update_version:patch": "npm version patch",
"build": "npm run pre-compile && npm run compile",
"publish_package": "npm publish --access=public",
"test": "jest --detectOpenHandles"
},
"author": "Aakash Jha <thedevdesigner@gmail.com> (https://www.thedevdesigner.com/)",
"repository": {
"type": "git",
"url": "https://github.com/the-devdesigner/helper-modules"
},
"bugs": {
"url": "https://github.com/the-devdesigner/helper-modules/issues"
},
"keywords": [
"nodejs",
"typescript",
"jest",
"helper-functions"
],
"readme": "./README.md",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@types/supertest": "^2.0.12",
"jest": "^29.2.2",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"dotenv": "^16.0.3",
"typescript": "^4.8.4"
}
}