-
Notifications
You must be signed in to change notification settings - Fork 433
/
package.json
101 lines (101 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
{
"name": "@google/clasp",
"version": "2.0.1",
"description": "Develop Apps Script Projects locally",
"main": "./src/index.js",
"scripts": {
"build": "tsc --project tsconfig.json && npm i -g --loglevel=error",
"build-fresh": "npm cache clean --force && npm i && npm run build",
"publish": "npm publish --access public",
"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",
"prettier": "./node_modules/prettier/bin-prettier.js --parser typescript --single-quote --bracket-spacing --print-width 110 --trailing-comma all src/**/*.ts --write"
},
"bin": {
"clasp": "./src/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": {
"chalk": "^2.4.1",
"cli-spinner": "^0.2.8",
"commander": "^2.15.1",
"connect": "^3.6.6",
"del": "^3.0.0",
"dotf": "^1.2.0",
"ellipsize": "^0.1.0",
"find-parent-dir": "^0.3.0",
"fs": "^0.0.1-security",
"fuzzy": "^0.1.3",
"google-auth-library": "^2.0.0",
"googleapis": "^36.0.0",
"inquirer": "^5.2.0",
"inquirer-autocomplete-prompt": "1.0.1",
"is-online": "^7.0.0",
"mkdirp": "^0.5.1",
"multimatch": "^2.1.0",
"opn": "^5.3.0",
"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",
"string.prototype.padend": "^3.0.0",
"ts2gas": "1.6.0",
"ucfirst": "^1.0.0",
"url": "^0.11.0",
"watch": "^1.0.2"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/cli-spinner": "^0.2.0",
"@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/inquirer": "0.0.43",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.0",
"@types/multimatch": "2.1.2",
"@types/node": "^9.6.22",
"@types/opn": "^5.1.0",
"@types/pluralize": "^0.0.28",
"@types/recursive-readdir": "^2.2.0",
"@types/tmp": "0.0.33",
"@types/watch": "^1.0.0",
"fs-copy-file-sync": "^1.1.1",
"fs-extra": "^6.0.1",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"prettier": "^1.15.2",
"tmp": "0.0.33",
"tslint": "^5.11.0",
"typescript": "^3.1.0"
}
}