-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.15 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
{
"name": "zapier-innovint-connector",
"version": "1.0.0",
"description": "Innovint Zapier Integration is an open-source integration connecting Zapier with the Innovint API, enabling users to create automated workflows between Innovint and various other applications supported by Zapier.",
"repository": "danshome/zapier-integration",
"author": "Dan McLaughlin <dan@danshome.net>",
"license": "MIT License",
"main": "index.js",
"scripts": {
"preversion": "git pull && npm run validate",
"postversion": "git push && git push --tags",
"test": "mocha --recursive -t 10000 -r dotenv/config 'test/unit/**/*.js'",
"test:integration": "mocha --recursive -t 20000 -r dotenv/config 'test/integration/**/*.js'",
"test:all": "npm test && npm run test:integration",
"deploy": "npm run validate && zapier push",
"precommit": "lint-staged",
"validate": "npm run test && npm run lint && zapier validate",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"env": "zapier env:set 1.0.5 ${npm_config_var}=${npm_config_val}",
"prepare": "husky install"
},
"engines": {
"node": ">=21.7.1",
"npm": ">=10.5.0"
},
"dependencies": {
"dotenv": "~16.4.5",
"zapier-platform-core": "15.7.0"
},
"devDependencies": {
"eslint": "~8.57.0",
"eslint-config-google": "~0.14.0",
"eslint-config-prettier": "~9.1.0",
"eslint-config-standard": "~17.1.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-mocha": "~10.4.3",
"eslint-plugin-n": "~16.6.2",
"eslint-plugin-promise": "~6.1.1",
"husky": "~9.0.11",
"lint-staged": "~15.2.2",
"mocha": "~10.4.0",
"nock": "~13.5.4",
"npm-check-updates": "^16.14.20",
"nyc": "^15.1.0",
"prettier": "~3.2.5",
"should": "~13.2.3",
"zapier-platform-cli": "~15.7.0"
},
"overrides": {
"tough-cookie": "~4.1.3",
"got": "~11.8.5",
"node-gyp": "~10.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run precommit"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{js,json}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true
},
"private": true
}