-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "multi-clasp2",
"version": "3.0.20",
"description": "Google Clasp wrapper to push changes to multiple Apps Script projects at once.",
"exports": "./build/index.js",
"main": "build/index.js",
"author": "Fabrizio Antonangeli",
"license": "GPL-3.0",
"scripts": {
"test": "jest",
"e2e": "npm run build; jest --runInBand --config=jest.e2e.config.js",
"lint": "eslint .",
"release": "release-it --verbose",
"build": "tsc",
"build-watch": "tsc --watch",
"start": "node build/src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fantonangeli/multi-clasp2.git"
},
"keywords": [
"clasp",
"apps",
"script",
"multiple",
"projects"
],
"bugs": {
"url": "https://github.com/fantonangeli/multi-clasp2/issues"
},
"homepage": "https://github.com/fantonangeli/multi-clasp2",
"bin": {
"multi-clasp": "build/src/index.js"
},
"files": [
"build"
],
"dependencies": {
"@google/clasp": "2.4.2",
"commander": "^13.0.0",
"typescript": "^5.6.3"
},
"devDependencies": {
"@jest/test-sequencer": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"auto-changelog": "^2.5.0",
"eslint": "^9.14.0",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"release-it": "^18.1.1",
"ts-jest": "^29.2.5"
}
}