-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 868 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
{
"name": "awsip",
"version": "1.0.0",
"description": "Given an AWS IP address, shows which region it belongs to.",
"main": "entry.js",
"scripts": {
"build": "browserify entry.js > bundle.js",
"dist": "browserify -p tinyify entry.js > bundle.js",
"watch": "nodemon --ignore bundle.js --exec npm run build",
"deploy": "scp index.html bundle.js style.css tham:awsip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thameera/awsip.git"
},
"keywords": [],
"author": "Thameera Senanayaka <me@thameera.com> (https://thameera.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/thameera/awsip/issues"
},
"homepage": "https://github.com/thameera/awsip#readme",
"dependencies": {
"browserify": "^16.5.2",
"ip-address": "^6.4.0",
"nodemon": "^3.0.1",
"tinyify": "^4.0.0"
}
}