forked from GaloisInc/coffeebot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 876 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 876 Bytes
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": "coffeebot",
"version": "1.0.1",
"description": "Simple script to use in Google Sheets to pair up particpants for \"coffeebot\" visit to get to know each other",
"private": true,
"scripts": {
"build:minified": "webpack --env.production",
"build": "webpack --env.NODE_ENV=development",
"test": "jest",
"test:watch": "jest --watch",
"watch": "webpack --env.NODE_ENV=development --watch"
},
"repository": {
"type": "git",
"url": "git@gitlab-int.galois.com:anniecherk/coffeebot.git"
},
"keywords": [
"Google App Scripts",
"Sheets",
"JavaScript",
"Remote Social Pairing"
],
"author": "Ted Hille <ted@galois.com>",
"license": "ISC",
"devDependencies": {
"jest": "^26.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"wrapper-webpack-plugin": "^2.1.0"
}
}