-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "@artlife/micro-job",
"version": "0.0.27",
"description": "A small framework for creating jobs-based microservices.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"clean": "rm -rf build/*",
"build": "tsc",
"clean-build": "rm -rf build/* && tsc",
"build:watch": "tsc --watch",
"clean-build:watch": "rm -rf build/* && tsc --watch",
"prepublishOnly": "npm run clean && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artlife-solutions/micro-job.git"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/artlife-solutions/micro-job/issues"
},
"homepage": "https://github.com/artlife-solutions/micro-job#readme",
"dependencies": {
"@artlife/micro": "0.0.73"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "10.11.4",
"source-map-support": "0.5.9",
"ts-node": "7.0.1",
"typescript": "3.1.1"
}
}