forked from wp-graphql/wp-graphql
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 819 Bytes
/
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
{
"name": "wp-graphql",
"version": "0.3.6",
"description": "GraphQL API for WordPress",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wp-graphql/wp-graphql.git"
},
"keywords": [
"WordPress",
"GraphQL"
],
"author": "WPGraphQL",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/wp-graphql/wp-graphql/issues"
},
"homepage": "https://github.com/wp-graphql/wp-graphql#readme",
"devDependencies": {
"husky": "^3.0.9",
"lint-staged": "^9.4.2"
},
"lint-staged": {
"*.php": "composer run check-cs"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}