-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.19 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "generator-np-stack",
"version": "0.0.1",
"description": "Generator NP Stack",
"homepage": "https://noprotocol.nl",
"author": {
"name": "Govert Verschuur",
"email": "[email protected]",
"url": "https://noprotocol.nl"
},
"contributors": [
"Stef van den Ham <[email protected]> (https://mindthecode.com/)",
"Anne Jan Brouwer <[email protected]> (https://annejan.com/)",
"Bob Fanger <[email protected]> (https://bfanger.nl/)"
],
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"",
"yeoman-generator"
],
"devDependencies": {
"eslint": "5",
"eslint-config-recommended": "^4.0.0",
"eslint-config-xo": "^0.26.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.1.0",
"prettier": "^1.18.2",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^2.0.0"
},
"dependencies": {
"@vue/eslint-config-prettier": "^4.0.1",
"chalk": "^2.1.0",
"eslint-plugin-only-warn": "^1.0.1",
"eslint-plugin-vue": "^5.2.2",
"fs-extra": "^8.1.0",
"merge": ">=1.2.1",
"replace-in-file": "^4.1.1",
"slugify": "^1.2.9",
"yeoman-generator": "^4.0.1",
"yosay": "^2.0.1",
"snyk": "^1.189.0"
},
"jest": {
"testEnvironment": "node",
"rootDir": "__tests__"
},
"scripts": {
"prepublish": "npm run snyk-protect; yarn audit",
"pretest": "eslint .",
"test": "jest",
"snyk-protect": "snyk protect"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"root": true,
"extends": [
"esnext",
"plugin:vue/recommended",
"@vue/prettier"
],
"env": {
"browser": true,
"jest": true,
"node": true
},
"parserOptions": {
"parser": "babel-eslint"
},
"plugins": [
"only-warn"
],
"rules": {
"import/no-commonjs": "off",
"import/no-nodejs-modules": "off"
}
},
"repository": "noprotocol/generator-np-stack",
"license": "MIT",
"snyk": true
}