forked from google/clasp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.35 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
{
"name": "@google/clasp",
"version": "1.3.2",
"description": "Develop Apps Script Projects locally",
"main": "index.js",
"scripts": {
"build": "tsc --project tsconfig.json; npm i -g;",
"docs": "tsc docs.ts && node docs.js",
"lint": "tslint --project tslint.json && echo 'No lint errors. All good!'",
"test": "nyc --cache false mocha --timeout 100000 -- tests/*.js",
"coverage": "nyc --cache false report --reporter=text-lcov | coveralls"
},
"bin": {
"clasp": "./index.js"
},
"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": {
"anymatch": "^1.3.2",
"axios": "^0.18.0",
"chalk": "^2.4.1",
"cli-spinner": "^0.2.8",
"commander": "^2.15.1",
"connect": "^3.6.6",
"del": "^3.0.0",
"dotf": "^1.0.3",
"find-parent-dir": "^0.3.0",
"fs": "^0.0.1-security",
"googleapis": "^28.1.0",
"http-shutdown": "^1.2.0",
"inquirer": "^5.2.0",
"is-online": "^7.0.0",
"mkdirp": "^0.5.1",
"open": "^0.0.5",
"path": "^0.12.7",
"pluralize": "^7.0.0",
"read-file": "^0.2.0",
"read-multiple-files": "^1.1.1",
"readline": "^1.3.0",
"recursive-readdir": "^2.2.2",
"split-lines": "^1.1.0",
"url": "^0.11.0"
},
"devDependencies": {
"@types/anymatch": "^1.3.0",
"@types/chai": "^4.1.3",
"@types/cli-spinner": "^0.2.0",
"@types/commander": "^2.12.2",
"@types/connect": "^3.4.32",
"@types/del": "^3.0.1",
"@types/events": "^1.2.0",
"@types/fs-extra": "^5.0.2",
"@types/glob": "^5.0.35",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.0",
"@types/node": "^9.6.18",
"@types/open": "^0.0.29",
"@types/pluralize": "^0.0.28",
"@types/recursive-readdir": "^2.2.0",
"@types/tmp": "0.0.33",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"extract-comments": "^1.0.0",
"fs-extra": "^6.0.1",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"parse-comments": "^0.4.3",
"tmp": "0.0.33",
"tslint": "^5.10.0",
"typescript": "^2.8.4",
"ucfirst": "^1.0.0"
}
}