-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
37
38
39
40
41
42
{
"name": "@overture-stack/gitlify",
"version": "0.0.2",
"author": "Anders Richardsson",
"license": "Apache-2.0",
"description": "Trigger Netlify builds manually from your PR.",
"repository": "[email protected]:overture-stack/gitlify.git",
"bin": {
"gitlify": "./lib/cli.js"
},
"files": [
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-web-module",
"clean": "nwb clean-module",
"prepublishOnly": "npm run build",
"start": "node lib/index.js",
"test": "nwb test",
"test:coverage": "nwb test --coverage",
"test:watch": "nwb test --server"
},
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0"
},
"devDependencies": {
"nwb": "0.23.x"
},
"resolutions": {
"axios": "^0.19.2",
"braces": "^2.3.1",
"cryptiles": "^4.1.2",
"hoek": "^4.2.1",
"mem": "^4.0.0",
"serialize-javascript": "^2.1.1",
"tunnel-agent": "^0.6.0",
"webpack-dev-server": "^3.1.11"
}
}