-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 890 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
37
38
39
40
41
42
{
"name": "gas-module",
"version": "2.2.1",
"description": "Import local google appscript files written with .js or .ts extension for testing",
"main": "src/index.js",
"scripts": {
"test": "jest",
"testsum": "jest 2>&1 | grep '●' | cat -n"
},
"jest": {
"rootDir": "./",
"testPathIgnorePatterns": [
"/node_modules/",
"__tests__/mocks/*"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/*.{js,ts}",
"!**/node_modules/**",
"!**/vendor/**"
],
"coverageReporters": [
"html",
"text-summary"
]
},
"keywords": [
"gas",
"google app script",
"module",
"gas module"
],
"author": "Naveen K R",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/me-nkr/gas-module.git"
},
"devDependencies": {
"@types/jest": "^27.0.3"
}
}