-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
84 lines (84 loc) · 1.73 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
{
"name": "generator-kittn",
"version": "5.12.6",
"description": "Kittn Scaffolding and Frontend Toolchain",
"main": "generators/app/index.js",
"repository": "kittn/generator-kittn",
"author": "Sascha Fuchs <gisu2onic@gmail.com>",
"contributors": [
{
"name": "Lars Eichler",
"email": "larseichler.le@gmail.com"
}
],
"files": [
"generators"
],
"engines": {
"node": ">=7.6.0"
},
"keywords": [
"yeoman-generator",
"postcss",
"libsass",
"svgsprite",
"yeoman",
"webpack",
"yarn",
"babel",
"es6",
"gulp",
"twig"
],
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"scripts": {
"test": "jest"
},
"dependencies": {
"chalk": "^2.4.1",
"clear-terminal": "^0.0.2",
"command-exists": "^1.2.7",
"deep-extend": "^0.6.0",
"fs-extra": "^6.0.1",
"gradient-string": "^1.1.0",
"jsonschema": "^1.2.4",
"mkdirp": "^0.5.1",
"mysql": "^2.15.0",
"randomstring": "^1.1.5",
"sort-package-json": "^1.15.0",
"yeoman-generator": "^2.0.5",
"yosay": "^2.0.2"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-xo-space": "^0.18.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^1.0.0-rc.2",
"jest": "^23.1.0",
"nsp": "^3.2.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.7.2"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules",
"generators"
]
},
"eslintConfig": {
"extends": "standard",
"env": {
"node": true
}
},
"license": "MIT"
}