-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.37 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
{
"name": "@wptools/generator-theme",
"version": "0.1.1",
"description": "Yeoman generator for WordPress themes, childs and custom templates",
"homepage": "https://github.com/codekraft-studio/generator-wordpress-theme",
"author": {
"name": "codekraft-studio",
"email": "info@codekraft.it",
"url": "https://github.com/codekraft-studio"
},
"files": [
"generators",
"utils"
],
"main": "generators/app/index.js",
"scripts": {
"pretest": "npm run lint",
"test": "jest --coverage",
"lint": "eslint . --fix"
},
"keywords": [
"wordpress",
"starter",
"wp-theme",
"wp-plugin",
"yeoman-generator"
],
"repository": "codekraft-studio/generator-wordpress-theme",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^2.4.2",
"jimp": "^0.6.0",
"lodash": "^4.17.11",
"update-notifier": "^2.5.0",
"yeoman-generator": "^3.2.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.12.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.9.1"
},
"jest": {
"testEnvironment": "node"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"jest": true,
"node": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 6
}
},
"publishConfig": {
"access": "public"
}
}