-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.51 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.51 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
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
{
"name": "generator-gas",
"version": "0.5.2",
"description": "Google Apps Script Application Generator",
"homepage": "https://github.com/fossamagna/generator-gas",
"author": {
"name": "fossamagna",
"email": "fossamagna2@gmail.com",
"url": "https://github.com/fossamagna"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"Google Apps Script",
"yeoman-generator"
],
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^7.25.0",
"husky": "^4.0.3",
"jest": "^27.0.4",
"jest-cli": "^27.0.1",
"lint-staged": "^11.0.0",
"nsp": "^3.2.1",
"prettier": "^2.3.2",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^4.0.1"
},
"dependencies": {
"chalk": "^4.1.1",
"underscore.string": "^3.3.4",
"yeoman-generator": "4.5.0",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"scripts": {
"prepublishOnly": "npm audit --audit-level high",
"pretest": "eslint .",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"env": {
"jest": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
}
}
},
"repository": "fossamagna/generator-gas",
"license": "MIT"
}