-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 939 Bytes
/
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
{
"name": "tsgast",
"version": "1.0.71",
"description": "TSGasT is a TAP-compliant testing framework for Google Apps Script(GAS) in TypeScript. It provides a simple way to verify that the GAS programs you write behave as expected.",
"main": "index.js",
"directories": {
"doc": "doc"
},
"dependencies": {
"@types/google-apps-script": "0.0.18"
},
"devDependencies": {
"node-google-apps-script": "1.1.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pull": "scripts/pull.sh",
"build": "tsc",
"build-test": "scripts/build-test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevincar/gast.git"
},
"keywords": [
"test",
"testing",
"unit-testing",
"gas",
"tap",
"test-anything-protocol"
],
"author": "Zhuohuan LI <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/kevincar/gast"
}