forked from google/clasp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.8 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
{
"name": "@google/clasp",
"version": "2.3.0",
"description": "Develop Apps Script Projects locally",
"main": "build/src/index.js",
"scripts": {
"build": "npm run compile && npm i -g --loglevel=error --force",
"build-fresh": "npm cache clean --force && npm i && npm run build",
"watch": "tsc --project tsconfig.json --watch",
"prepare": "npm run compile",
"publish": "npm publish --access public",
"lint": "npm run check",
"test": "nyc mocha --cache false --timeout 100000 --recursive build/test",
"coverage": "nyc --cache false report --reporter=text-lcov | coveralls",
"prettier": "prettier src test --write",
"check": "gts check src/*.ts src/**/*.ts test/*.ts test/**/*.ts",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix src/*.ts src/**/*.ts test/*.ts test/**/*.ts",
"pretest": "npm run compile && npm run check"
},
"engines": {
"node": ">= 10.3.0"
},
"bin": {
"clasp": "build/src/index.js"
},
"files": [
"docs",
"build/src"
],
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "https://github.com/google/clasp"
},
"keywords": [
"Apps",
"Script",
"SDK",
"API",
"script.google.com",
"extension",
"add-on"
],
"importSort": {
".ts": {
"parser": "typescript",
"style": "module-compact"
},
"on-save": false
},
"author": "Grant Timmerman",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^4.1.0",
"cli-truncate": "^2.1.0",
"commander": "^6.2.1",
"dotf": "^1.5.2",
"find-up": "^5.0.0",
"fs-extra": "^9.0.1",
"fuzzy": "^0.1.3",
"gaxios": "^4.1.0",
"google-auth-library": "^6.1.3",
"googleapis": "^66.0.0",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt-ipt": "^2.0.0",
"is-online": "^9.0.0",
"loud-rejection": "^2.2.0",
"make-dir": "^3.1.0",
"multimatch": "^5.0.0",
"normalize-newline": "^3.0.0",
"open": "^7.3.0",
"ora": "^5.1.0",
"read-pkg-up": "^7.0.1",
"recursive-readdir": "^2.2.2",
"split-lines": "^2.0.0",
"strip-bom": "^4.0.0",
"ts2gas": "^3.6.3",
"typescript": "^4.1.3",
"watch": "^1.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/fs-extra": "^9.0.5",
"@types/inquirer": "^7.3.1",
"@types/mocha": "^8.2.0",
"@types/node": "^12.19.9",
"@types/recursive-readdir": "^2.2.0",
"@types/tmp": "^0.2.0",
"@types/watch": "^1.0.1",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"gts": "^3.0.3",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"tmp": "^0.2.1",
"type-fest": "^0.20.2"
}
}