-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "@juneil/entityts",
"version": "2.0.0",
"description": "EntityTS - Typescript library for entities, create entities for validation",
"main": "index.js",
"scripts": {
"pretest": "tslint -p ./tsconfig.json --type-check \"./src/**/*.ts\" \"./test/**/*.ts\"",
"test": "istanbul cover _mocha test/**/*.test.ts",
"prebuild": "npm run clear && npm test",
"build": "tsc -p ./tsconfig.build.json",
"postbuild": "cp ./README.md ./dist && cp ./package.json ./dist",
"clear": "rm -rf ./dist"
},
"author": "Juneil",
"homepage": "https://github.com/Juneil/entityts",
"repository": {
"type": "git",
"url": "https://github.com/Juneil/entityts.git"
},
"keywords": [
"entityts",
"entity",
"entities",
"typescript",
"decorator",
"node",
"nodejs"
],
"license": "ISC",
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/joi": "^14.3.3",
"@types/node": "^10.14.7",
"istanbul": "^1.1.0-alpha.1",
"joi": "^14.3.1",
"mocha": "^5.0.0",
"mocha-typescript": "^1.1.17",
"ts-node": "^8.2.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"unit.js": "^2.1.0"
},
"peerDependencies": {
"joi": "^14.3.1"
}
}