-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.06 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@classroomtechtools/object-store",
"main": "src/modules/ObjectStore.js",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/classroomtechtools/objectStore.git"
},
"type": "module",
"license": "MIT",
"ava": {
"verbose": true
},
"author": "Adam Morris <classroomtechtools.ctt@gmail.com> (http://classroomtechtools.com/)",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "ava",
"deploy": "run-s 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": "clasp push",
"clasp:tests": "clasp run tests",
"generate-docs": "jsdoc --configure jsdoc-config.json --verbose --readme README.md"
},
"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.10.1",
"jsdoc": "^3.6.6",
"jsdoc-template": "file:node_modules/jsdoc-template",
"npm-run-all": "^4.1.5",
"rollup": "^2.19.0"
},
"keywords": [
"google",
"appscripts"
],
"dependencies": {
"@classroomtechtools/enforce_arguments": "^1.0.3",
"@classroomtechtools/unittesting": "^1.5.2",
"@classroomtechtools/virtualgs": "file:../virtualization",
"sinon": "^9.0.2",
"sirv-cli": "^0.4.4"
},
"description": "A key/value store in AppsScripts that stores values and objects locally in memory, and writes to the `CacheService` and `PropertiesService` for reliable persistance.",
"bugs": {
"url": "https://github.com/classroomtechtools/objectStore/issues"
},
"homepage": "https://github.com/classroomtechtools/objectStore#readme",
"directories": {
"doc": "docs",
"test": "tests"
}
}