forked from google/clasp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 2.86 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
{
"name": "@google/clasp",
"version": "2.3.0",
"description": "Develop Apps Script Projects locally",
"main": "./src/index.js",
"scripts": {
"build": "npm run build-local && npm i -g --loglevel=error",
"build-fresh": "npm cache clean --force && npm i && npm run build",
"build-local": "tsc --project tsconfig.json",
"watch": "tsc --project tsconfig.json --watch",
"publish": "npm publish --access public",
"lint": "tslint --project tslint.json && echo 'No lint errors. All good!'",
"test": "nyc mocha -r ts-node/register --cache false --timeout 100000 'tests/**/*.ts'",
"coverage": "nyc --cache false report --reporter=text-lcov | coveralls",
"prettier": "prettier --parser typescript --single-quote --bracket-spacing --print-width 110 --trailing-comma all src/**/*.ts --write"
},
"engines": {
"node": ">= 8.2.1"
},
"bin": {
"clasp": "./src/index.js"
},
"files": [
"docs",
"src/**/*.js",
"src/**/*.md"
],
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"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": "^3.0.0",
"cli-spinner": "^0.2.10",
"commander": "^4.1.0",
"dotf": "^1.2.0",
"ellipsize": "^0.1.0",
"find-up": "^4.1.0",
"fs-extra": "^8.1.0",
"fuzzy": "^0.1.3",
"gaxios": "^2.2.2",
"google-auth-library": "^5.9.1",
"googleapis": "^47.0.0",
"inquirer": "^7.0.3",
"inquirer-autocomplete-prompt-ipt": "^2.0.0",
"is-online": "^8.2.1",
"mkdirp": "^0.5.1",
"multimatch": "^4.0.0",
"normalize-newline": "3.0.0",
"open": "^7.0.0",
"pluralize": "^8.0.0",
"recursive-readdir": "^2.2.2",
"split-lines": "^2.0.0",
"strip-bom": "^4.0.0",
"ts2gas": "^3.4.4",
"typescript": "^3.7.5",
"watch": "^1.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/cli-spinner": "^0.2.0",
"@types/fs-extra": "^8.0.1",
"@types/inquirer": "^6.5.0",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.13",
"@types/pluralize": "^0.0.29",
"@types/recursive-readdir": "^2.2.0",
"@types/tmp": "^0.1.0",
"@types/watch": "^1.0.1",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"tmp": "^0.1.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1"
}
}