forked from oknoorap/wpcs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 KB
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
{
"name": "wpcs-cli",
"version": "2.1.2",
"description": "WordPress Coding Standards in NodeJS",
"main": "index.js",
"scripts": {
"test": "ava",
"format": "prettier --write lib/**/*.{js,json,css,md}",
"pull-wpcs": "git subtree pull --prefix scripts/wordpress-coding-standards https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git develop --squash",
"pull-phpcbf": "cd scripts && curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcbf.phar",
"pull-phpcs": "cd scripts && curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar",
"update-script": "npm run pull-wpcs && npm run pull-phpcs && npm run pull-phpcbf"
},
"keywords": [
"wordpress",
"unit-test"
],
"author": "Nick Randall",
"license": "MIT",
"ava": {
"files": [
"test/test.js"
]
},
"bin": "bin/wpcs",
"files": [
"index.js",
"bin",
"lib",
"scripts"
],
"dependencies": {
"async": "^2.6.2",
"caporal": "^1.1.0",
"chalk": "^2.4.2",
"globby": "^9.1.0",
"log-symbols": "^2.2.0",
"ora": "^3.2.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"ava": "^1.4.0"
}
}