-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "gatsby-plugin-node-fields",
"version": "3.0.0",
"main": "index.js",
"description": "A Gatsby Plugin and helper function for consistent creation of node fields with support for default values, validations and transformations",
"repository": {
"type": "git",
"url": "git+https://github.com/Undistraction/gatsby-plugin-node-fields.git"
},
"files": [
"gatsby-node.js",
"src",
"lib"
],
"keywords": [
"gatsby",
"gatsby-plugin",
"defaults",
"validation",
"fields",
"front matter",
"node",
"config"
],
"author": "Pedr Browne",
"license": "MIT",
"bugs": {
"url": "https://github.com/Undistraction/gatsby-plugin-node-fields/issues"
},
"homepage": "https://github.com/Undistraction/gatsby-plugin-node-fields",
"scripts": {
"build": "babel --out-dir ./lib --ignore \"__tests__\" src",
"prebuild": "npm run lint",
"test": "jest --watch",
"test:noWatch": "jest",
"prepublishOnly": "npm run verify",
"publish:patch": "npm version patch && sudo npm publish",
"publish:minor": "npm version minor && sudo npm publish",
"publish:major": "npm version major && sudo npm publish",
"lint": "eslint src",
"audit:packages": "yarn outdated || true",
"test:cov": "open coverage/index.html",
"securityCheck": "npm audit",
"verify": "npm run lint && npm run test:noWatch && npm run build"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-destructuring": "^7.6.0",
"@babel/preset-env": "^7.7.1",
"codecov": "^3.0.0",
"cssbeautify": "^0.3.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.15.0-rc.8",
"jest": "^24.9.0",
"prettier": "^1.13.5"
},
"dependencies": {
"ramda": "^0.26.1",
"ramda-adjunct": "^2.22.1",
"@hapi/joi": "^16.1.7"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run verify"
}
}
}