-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
28 lines (28 loc) · 847 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
{
"name": "gravity-forms-data-attributes",
"version": "1.1.0",
"description": "Add custom data attributes to Gravity Forms fields.",
"private": true,
"repository": "[email protected]:mmirus/gravity-forms-data-attributes.git",
"author": "Matt Mirus <[email protected]>",
"homepage": "https://github.com/mmirus/gravity-forms-data-attributes",
"license": "MIT",
"scripts": {
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint assets",
"lint:styles": "stylelint \"assets/*.css\"",
"test": "npm run -s lint && composer test"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"devDependencies": {
"eslint": "^6.0.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^4.0.0",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^20.0.0"
}
}