-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 952 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
{
"name": "pasteblink",
"version": "0.1.0",
"description": "an app to link two computers using barcode scanning and to use that link to transfer text snippets",
"main": "app.js",
"scripts": {
"test": "node_modules/.bin/mocha tests",
"unit_tests": "node_modules/.bin/mocha tests/*.spec.js",
"start": "node app.js",
"cloud_build": "./gcloud_build.py --project-link gcr.io/pasteblink-222512/pasteblink --project-name pasteblink-222512 --config cloudbuild.yml"
},
"author": "Tom Klinovsky",
"license": "ISC",
"dependencies": {
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.4",
"express-http-proxy": "^1.5.0",
"express-useragent": "^1.0.12",
"nconf": "^0.12.0",
"nice_debug": "^0.1.1",
"randomstring": "^1.1.5",
"ws": "^6.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"mocha": "^10.0.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.3.0"
}
}