-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.69 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
{
"name": "generator-stencil",
"version": "0.1.5",
"description": "scaffolding tool for stencil compiler",
"homepage": "https://akashgutha.github.io/generator-stencil/",
"author": {
"name": "AkashGutha",
"email": "akash.gutha@outlook.com",
"url": "https://akashgutha.github.io"
},
"files": ["app", "component", "page", "utils"],
"main": "app/index.js",
"keywords": ["stencil", "js", "javascript", "yeoman-generator"],
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.4.0",
"eslint-config-xo": "^0.18.2",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^4.2.1",
"nsp": "^2.6.3",
"prettier": "^1.11.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.7.0",
"snyk": "^1.80.0"
},
"dependencies": {
"chalk": "^2.3.2",
"change-case": "^3.0.2",
"generator-license": "^5.4.0",
"git-config": "0.0.7",
"lodash": "^4.17.12",
"yeoman-generator": "^2.0.5",
"yosay": "^2.0.2"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint .",
"precommit": "lint-staged",
"test": "snyk test"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"eslintConfig": {
"extends": ["xo", "prettier"],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": ["prettier"]
},
"repository": "AkashGutha/generator-stencil",
"license": "MIT"
}