-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 844 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
{
"name": "appcenter-build-monitoring",
"version": "1.0.7",
"description": "Receives a list of branches for the app to build and monitor them",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p ."
},
"author": {
"name": "Maxim Zaytsev",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"axios": "^0.20.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/max-zaytsev/appcenter-build-monitor.git"
},
"homepage": "https://github.com/max-zaytsev/appcenter-build-monitor#readme",
"files": ["dist/**/*"],
"devDependencies": {
"@types/node": "^14.11.2",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}