forked from fusebit/cloud-git
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 827 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": "@fusebit/cloud-git",
"version": "1.0.0",
"description": "Node.js git server for cloud-native applications",
"main": "lib/index.js",
"license": "MIT",
"author": "https://fusebit.io",
"packageAs": "@fusebit/cloud-git",
"keywords": [],
"homepage": "https://github.com/fusebit/cloud-git",
"repository": {
"type": "git",
"url": "[email protected]:fusebit/cloud-git.git"
},
"bugs": {
"url": "http://github.com/fusebit/cloud-git/issues"
},
"engines": {
"node": ">= 14.14"
},
"devDependencies": {
"express": "^4.17.1",
"jest": "^24.9.0",
"prettier": "^2.0.5",
"uuid": "^8.3.2"
},
"scripts": {
"test": "jest --colors",
"coverage": "jest --colors --coverage",
"prettier": "prettier --write ./lib ./test",
"sample": "node sample/server.js"
}
}