-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 815 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 815 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
34
{
"name": "dto-classes",
"version": "0.0.13",
"description": "Classes for data transfer objects.",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start:dev": "npx nodemon",
"test": "jest",
"test:dev": "jest --watchAll",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"homepage": "https://github.com/rsinger86/dto-classes",
"author": "Robert Singer",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^17.0.29",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"files": [
"dist/**/*"
],
"exports": {
".": "./dist/index.js"
}
}