-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 996 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
40
41
42
{
"name": "zapier-flow",
"version": "1.0.2",
"description": "An app to connect the Flow API to Zapier.",
"repository": "flowapp/zapier-flow",
"author": "Flow Technologies Ltd <[email protected]>",
"contributors": [
"Josiah Wiebe <[email protected]>",
"Rose Robertson <[email protected]>",
"Ali Bosworth <[email protected]>"
],
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
},
"dependencies": {
"zapier-platform-core": "8.0.1"
},
"devDependencies": {
"@zapier/eslint-plugin-zapier": "^9.0.0",
"eslint": "^5.15.1",
"eslint-plugin-jest": "^22.4.1",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"nock": "^10.0.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"lint:js": "$(npm bin)/eslint *.js triggers resources --cache",
"test": "$(npm bin)/jest"
},
"lint-staged": {
"*.js": "npm run lint:js"
}
}