-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.25 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
{
"name": "d-ser-t",
"version": "1.0.5",
"description": "Composite package housing d-ser-t-service and d-ser-t-cli",
"license": "MIT",
"author": "Yomi (@jolly59) Katie (@KatieProchilo), Nick (@nhuntwalker)",
"homepage": "https://github.com/Joll59/d-ser-t#ReadMe",
"repository": {
"type": "git",
"url": "https://github.com/Joll59/d-ser-t.git"
},
"bugs": {
"url": "https://github.com/Joll59/d-ser-t/issues"
},
"directories": {
"lib": "lib"
},
"dependencies": {},
"devDependencies": {
"@types/async": "^2.4.2",
"@types/node": "^12.0.0",
"del-cli": "^2.0.0",
"lerna": "^3.15.0",
"ts-node": "^8.1.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1"
},
"scripts": {
"publish": "lerna publish from-package",
"lint": "tslint -p . -c tslint.json",
"prepublishOnly": "npm install",
"postinstall": "lerna bootstrap && npm run build",
"build": "npm run lint && lerna run build",
"check": "lerna run check",
"clean": "lerna run --parallel clean && del-cli node_modules",
"fix": "lerna run fix",
"test": "lerna run test"
}
}