-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.75 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.75 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
56
57
58
59
60
{
"name": "@classroomtechtools/dottie",
"version": "1.4.2",
"description": "Build jsons with sanity.",
"main": "src/modules/Dottie.js",
"type": "module",
"scripts": {
"dev": "rollup -c -w",
"start": "sirv build/svelte",
"test": "npm run bundle && ava",
"deploy": "run-s bundle clasp:push",
"build": "run-s rm-artifacts bundle generate",
"bundle": "rollup -c",
"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",
"clasp:tests": "clasp run tests",
"generate-docs": "docsify init ./docs"
},
"ava": {
"verbose": true
},
"keywords": [
"appscripts"
],
"author": "Adam Morris <classroomtechtools.com@gmail.com> (https://classroomtechtools.com)",
"license": "MIT",
"devDependencies": {
"@classroomtechtools/unittesting": "^2.0.3",
"@google/clasp": "^2.3.1",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"ava": "^3.15.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.48.0",
"rollup-plugin-hypothetical": "^2.1.0"
},
"dependencies": {
"dot-object": "^2.1.4",
"jsdoc": "^3.6.6"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/classroomtechtools/dottie.git"
},
"bugs": {
"url": "https://github.com/classroomtechtools/dottie/issues"
},
"homepage": "https://github.com/classroomtechtools/dottie#readme"
}