-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 914 Bytes
/
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
{
"name": "cambria-express",
"version": "0.0.1",
"description": "use cambria to migrate API requests as express middleware",
"main": "dist/index.js",
"scripts": {
"build": "tsc --outDir ./dist",
"test": "mocha -r ts-node/register test/**.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inkandswitch/cambria-express.git"
},
"author": "ink & switch",
"license": "MIT",
"bugs": {
"url": "https://github.com/inkandswitch/cambria-express/issues"
},
"homepage": "https://github.com/inkandswitch/cambria-express#readme",
"dependencies": {
"cambria": "ssh://git@github.com:inkandswitch/cambria.git",
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/mocha": "^8.0.1",
"assert": "^2.0.0",
"mocha": "^8.1.1",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}