-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.61 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.61 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@classroomtechtools/chat-adv-service",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/classroomtechtools/chat-adv-service.git"
},
"type": "module",
"license": "MIT",
"ava": {
"verbose": true
},
"author": "Adam Morris <classroomtechtools.ctt@gmail.com> (http://classroomtechtools.com/)",
"scripts": {
"build": "run-s rm-artifacts bundle generate",
"bundle": "rollup -c",
"dev": "rollup -c -w",
"test": "ava",
"push": "run-s bundle generate clasp:push",
"rm-artifacts": "rm -fr ./build/*",
"generate": "run-p generate:*",
"generate:remote": "cp -r ./src/scripts/* ./build/",
"generate:docs": "jsdoc --configure jsdoc-config.json --verbose --readme README.md",
"clasp:create": "clasp create --rootDir ./build",
"clasp:login": "clasp login",
"clasp:logout": "clasp logout",
"clasp:logs": "clasp logs",
"clasp:push": "clasp push",
"clasp:tests": "clasp run tests"
},
"devDependencies": {
"@classroomtechtools/virtualgs": "^1.7.2",
"@google/clasp": "^2.3.0",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^3.0.1",
"@rollup/plugin-node-resolve": "^8.1.0",
"ava": "^3.10.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.19.0",
"sinon": "^9.2.4"
},
"keywords": [
"google",
"appscripts"
],
"description": "Interact with Chat Service with Google AppsScripts",
"main": "src/modules/Chat.js",
"directories": {
"test": "tests"
},
"dependencies": {
"@classroomtechtools/nsconfigurator": "^1.0.1"
}
}