-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.7 KB
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
58
59
60
61
{
"name": "invoque",
"version": "1.0.33",
"description": "A flexible pattern for function oriented service composition / decomposition",
"bin": {
"invoque": "dist/invoque.js"
},
"files": [
"dist/*",
"tsconfig.invoque.json",
"Dockerfile",
"package.json",
"LICENSE"
],
"main": "dist/lib.js",
"types": "dist/lib.d.ts",
"scripts": {
"build": "tsc",
"dev": "nodemon --exec ts-node src/invoque.ts http examples/ --watch 'src/**/*.ts' 'test/**/*.ts'",
"dev:event": "nodemon --exec ts-node src/invoque.ts event examples/ --watch 'src/**/*.ts' 'test/**/*.ts'",
"container": "ts-node src/invoque.ts build examples/ --tag invoque-container",
"lint": "tslint --project tsconfig.json",
"prepublish": "npm run build",
"test:dev": "jest --watch",
"test": "npm run lint && jest",
"postinstall": "npm i -D @types/node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cif/invoque.git"
},
"author": "Ben Ipsen",
"license": "GNU",
"bugs": {
"url": "https://github.com/cif/invoque/issues"
},
"homepage": "https://github.com/cif/invoqudocke#readme",
"dependencies": {
"debug": "^4.1.1",
"micro": "^9.3.4",
"readline-sync": "^1.4.10",
"yargs": "^14.0.0"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/micro": "^7.3.3",
"@types/node": "^12.7.5",
"@types/readline-sync": "^1.4.3",
"@types/supertest": "^2.0.8",
"@types/yargs": "^13.0.2",
"express": "^4.17.1",
"jest": "^24.9.0",
"nodemon": "^1.19.2",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}