This repository was archived by the owner on Apr 24, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.25 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.25 KB
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
{
"name": "gasunit",
"description": "Testing library for Google Apps Script",
"private": true,
"scripts": {
"start": "npm run watch",
"test": "ts-mocha \"test/**/*.ts\"",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore 'src/**/*.ts' 'test/**/*.ts'",
"fix": "eslint --fix --ext .ts --ignore-path .gitignore 'src/**/*.ts' 'test/**/*.ts'",
"login": "clasp login",
"logout": "clasp logout",
"pull": "clasp pull",
"push": "clasp push",
"open": "clasp open",
"watch": "npm-run-all -p watch:*",
"watch:push": "clasp push --watch",
"watch:test": "ts-mocha --watch --watch-extensions ts \"test/**/*.ts\""
},
"devDependencies": {
"@google/clasp": "^2.3.0",
"@types/google-apps-script": "0.0.53",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"eslint-config-standard-with-typescript": "^9.0.0",
"eslint-plugin-googleappsscript": "^1.0.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"ts-mocha": "^6.0.0"
}
}