forked from bocoup/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 967 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
{
"name": "scripts",
"version": "1.0.0",
"description": "Example scripts for the Airtable scripting block",
"devDependencies": {
"@babel/core": "^7.9.0",
"babel-eslint": "^11.0.0-beta.2",
"eslint": "^6.8.0",
"eslint-plugin-prefer-let": "^1.0.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --write '**/*.{js,ts,tsx}'",
"pretty-quick": "pretty-quick"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Airtable/scripts.git"
},
"license": "MIT",
"homepage": "https://airtable.com/developers/scripting"
}