This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.75 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
{
"name": "gmail-biyete",
"description": "A Google Apps Script to parse notifications and other emails and add them to a Google Spreadsheet.",
"author": {
"name": "Camilo Castro",
"email": "[email protected]",
"url": "https://ninjas.cl"
},
"version": "1.0.0-dev",
"license": "GPL-3.0-or-later",
"scripts": {
"start": "npm run watch",
"build": "microbundle -i main.js -o dist/biyete.gs.js -f modern --no-sourcemap --strict --no-compress",
"watch": "microbundle -i main.js -o dist/biyete.gs.js -f modern --no-sourcemap --strict --no-compress --watch",
"lint": "standardx",
"lint:fix": "standardx --fix",
"jest": "cross-env BABEL_ENV=test jest",
"test": "npm run lint:fix && cross-env BABEL_ENV=test jest --silent",
"commit": "git-cz"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/plugin-transform-modules-commonjs": "7.10.4",
"cross-env": "7.0.2",
"cz-conventional-changelog": "3.2.0",
"git-cz": "4.7.0",
"jest": "26.1.0",
"microbundle": "0.12.3",
"standardx": "5.0.0"
},
"jest": {
"testEnvironment": "node"
},
"babel": {
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
},
"files": [
"src",
"dist"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"disableEmoji": true
}
},
"standardx": {
"globals": [
"GmailApp",
"SpreadsheetApp",
"UrlFetchApp",
"expect",
"test",
"describe",
"it"
],
"ignore": [
"**/dist/",
"**/assets/",
"**/*.min.js",
"coverage/**",
"node_modules/**",
"vendor/**"
],
"envs": [
"jest"
]
}
}