-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.73 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.73 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
{
"name": "@classroomtechtools/contextmanager",
"version": "3.0.1",
"description": "A python-esque context manager for appscripts",
"type": "module",
"main": "src/modules/ContextManager.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "ava",
"deploy": "run-s bundle clasp:push",
"bundle": "run-s rm-artifacts build generate",
"rm-artifacts": "rm -fr ./project/*",
"generate": "run-p generate:*",
"generate:remote": "cp -r ./src/scripts/* ./project/",
"clasp:create": "clasp create --rootDir ./project",
"clasp:login": "clasp login",
"clasp:logout": "clasp logout",
"clasp:logs": "clasp logs",
"clasp:push": "npm run bundle && clasp push",
"generate-docs": "node_modules/.bin/jsdoc --configure jsdoc-config.json --verbose --readme README.md"
},
"ava": {
"verbose": true,
"files": [
"tests/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/classroomtechtools/npm-contextmanager.git"
},
"author": "Adam Morris <classroomtechtools.ctt@gmail.com> (https://classroomtechtools.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/classroomtechtools/npm-contextmanager/issues"
},
"homepage": "https://github.com/classroomtechtools/npm-contextmanager#readme",
"devDependencies": {
"@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.13.0",
"jsdoc": "~3.6.6",
"jsdoc-template": "file:node_modules/jsdoc-template",
"jsdoc-to-markdown": "^6.0.1",
"node-forge": ">=0.10.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.34.0"
}
}