-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.57 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
{
"version": "0.2.0",
"main": "./network-wp-query.php",
"repository": {
"type": "git",
"url": "https://github.com/devaloka/network-wp-query.git"
},
"scripts": {
"precommit": "npm run --silent lint",
"cz": "git cz",
"release:first": "standard-version --sign --first-release",
"release:patch": "npm run --silent gulp bump:patch && git add -u && standard-version --sign --release-as patch --commit-all",
"release:minor": "npm run --silent gulp bump:minor && git add -u && standard-version --sign --release-as minor --commit-all",
"release:major": "npm run --silent gulp bump:major && git add -u && standard-version --sign --release-as major --commit-all",
"gulp": "gulp",
"lint:md": "remark .",
"lint": "npm-run-all --parallel --silent --continue-on-error lint:*",
"watch:lint:md": "chokidar \"./**/*.md\" --ignore \"node_modules/**/*\" -c \"npm run --silent lint:md\"",
"watch:lint": "npm-run-all --parallel --silent --continue-on-error watch:lint:*",
"watch": "npm-run-all --parallel --silent --continue-on-error watch:lint",
"ci:lint:md": "remark --frail .",
"ci:lint": "npm-run-all --parallel --continue-on-error ci:lint:*"
},
"devDependencies": {
"npm-run-all": "~4.0.2",
"chokidar-cli": "~1.2.0",
"husky": "~0.13.4",
"@whizark/cz-cli": "~0.3.0",
"standard-version": "~9.0.0",
"gulp": "^3.9.1",
"gulp-filter": "^5.0.0",
"gulp-replace": "^0.5.4",
"remark-cli": "^3.0.1",
"remark-lint": "^6.0.0",
"semver": "^5.3.0",
"@whizark/remark-preset": "~0.6.0"
},
"private": true
}