-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.82 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "gsheet-compost-collections",
"version": "0.4.0",
"description": "Smartphone-friendly web app for a Compost Collection service.",
"main": "Main.js",
"scripts": {
"helpHtml": "markdown-folder-to-html src/Help",
"lint:css": "npx stylelint './src/**/*.css.html'",
"lint:js": "npx eslint ./src/**/*.js",
"man": "npx jsdoc2md --template ./templates/MAN.hbs --files ./src/**/*.js* ./demo/**/*.js* > ./MAN.md",
"openEditor": "npm run push && npx clasp open",
"openPreview": "npm run push && npx clasp open --webapp --deploymentId $npm_package_config_headDeploymentId",
"postinstall": "node ./scripts/copyDependencies.js && node ./scripts/htmlify.js",
"prepare": "husky install",
"prepareTest": "node scripts/prepareTest.js",
"publish": "npm run prepareTest --test=false && ./scripts/publish.sh ${npm_package_config_pubDeploymentId} \"${npm_config_gccmessage}\" && npm run prepareTest --test=true",
"push": "npm run timestamp && node ./scripts/copyDependencies.js && node ./scripts/htmlify.js && npm run helpHtml && npx clasp push",
"timestamp": "node ./scripts/timestamp.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotherightthing/gsheet-compost-collections.git"
},
"keywords": [
"appsscript",
"google-sheets"
],
"author": "dotherightthingnz@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/dotherightthing/gsheet-compost-collections/issues"
},
"homepage": "https://github.com/dotherightthing/gsheet-compost-collections#readme",
"devDependencies": {
"@google/clasp": "2.4.1",
"@types/google-apps-script": "1.0.45",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-compat": "^4.0.1",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-jsdoc": "^37.6.3",
"eslint-plugin-json": "^3.1.0",
"husky": "^7.0.4",
"jsdoc-to-markdown": "^7.1.0",
"markdown-folder-to-html": "^2.4.0",
"postcss-html": "^1.3.0",
"postcss-syntax": "^0.36.2",
"qunit": "^2.19.3",
"sinon": "^15.0.0",
"stylelint": "^14.3.0",
"stylelint-config-html": "^1.0.0",
"stylelint-order": "^5.0.0",
"stylelint-selector-bem-pattern": "^2.1.1"
},
"config": {
"dependencies": {
"node_modules/dtrt-string-utils": [
"dtrt-string-utils.mjs"
],
"node_modules/dtrt-type-validate": [
"dtrt-type-validate.mjs"
]
},
"pubDeploymentId": "",
"htmlify": {
"node_modules/dtrt-string-utils": [
"dtrt-string-utils.mjs"
],
"node_modules/dtrt-type-validate": [
"dtrt-type-validate.mjs"
],
"node_modules/pubsub.js": [
"pubsub.js"
],
"node_modules/qunit/qunit": [
"qunit.css",
"qunit.js"
],
"node_modules/sinon/pkg": [
"sinon.js"
],
"src": [
"Config.js",
"Main.js",
"Middleware.js"
],
"src/Classes": [
"GccCache.js",
"GccCollection.js",
"GccColor.js",
"GccContainer.js",
"GccEnv.js",
"GccPage.js",
"GccRun.js",
"GccRunGroup.js",
"GccSheet.js",
"GccUi.js",
"GccUiCollection.js",
"GccUiCss.js",
"GccUiDialog.js",
"GccUiLoader.js",
"GccUiRun.js",
"GccUiRunForm.js",
"GccUiSelectDisclosure.js",
"GccUiSelectForm.js",
"GccUser.js",
"GccTest.js",
"GccUtils.js"
]
},
"testDependency": {
"userSymbol": "QUnitGS2",
"libraryId": "1tXPhZmIyYiA_EMpTRJw0QpVGT5Pdb02PpOHCi9A9FFidblOc9CY_VLgG",
"version": "23"
}
},
"dependencies": {
"dtrt-string-utils": "github:dotherightthing/dtrt-string-utils",
"dtrt-type-validate": "github:dotherightthing/dtrt-type-validate",
"open": "^8.4.0",
"pubsub.js": "^1.5.2"
}
}