forked from Codeinwp/neve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.64 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
{
"name": "neve",
"nicename": "Neve",
"version": "1.1.4",
"description": "Neve theme by ThemeIsle",
"category": "themes",
"repository": {
"type": "git",
"url": "git+https://github.com/Codeinwp/neve.git"
},
"keywords": [
"wordpress-theme"
],
"theme": {
"textdomain": "neve"
},
"author": "ThemeIsle <[email protected]>",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/Codeinwp/neve/issues"
},
"pot": {
"reportmsgidbugsto": "https://github.com/Codeinwp/neve/issues",
"languageteam": "Themeisle Translate <[email protected]>",
"lasttranslator": "Themeisle Translate Team <[email protected]>"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^2.2.1",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-rtlcss": "^2.0.1",
"grunt-theme-fleet": "github:codeinwp/grunt-theme-fleet",
"grunt-version": "^1.1.1",
"husky": "^1.2.0",
"load-project-config": "~0.2.0",
"pre-commit": "^1.2.2"
},
"scripts": {
"phpcbf": "phpcbf || true ",
"phpcs": "phpcs",
"jshint": "grunt jshint",
"buildCssJs": "grunt buildScripts",
"addNewStyles": "git add *.css assets/**/*.css"
},
"pre-commit": {
"run": [
"phpcbf",
"phpcs",
"jshint",
"buildCssJs",
"addNewStyles"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}