-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "zapier-platform-legacy-scripting-runner",
"version": "3.8.14",
"description": "Zapier's Legacy Scripting Runner, used by Web Builder apps converted to CLI.",
"repository": "zapier/zapier-platform",
"homepage": "https://platform.zapier.com/",
"author": "Zapier Engineering <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"main": "index.js",
"files": [
"/*.js"
],
"scripts": {
"lint": "eslint .",
"test": "CLIENT_ID=1234 CLIENT_SECRET=asdf AWS_ACCESS_KEY_ID=fake AWS_SECRET_ACCESS_KEY=fake mocha --recursive -t 20s --exit",
"test:debug": "CLIENT_ID=1234 CLIENT_SECRET=asdf AWS_ACCESS_KEY_ID=fake AWS_SECRET_ACCESS_KEY=fake mocha inspect --recursive -t 20s --exit",
"preversion": "git pull",
"postversion": "git push && git push --tags",
"ci-test": "yarn test && ./ci-test.js",
"validate": "yarn test && yarn lint"
},
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
},
"dependencies": {
"async": "2.6.4",
"flat": "5.0.2",
"jquery": "3.5.0",
"jsdom": "7.0.0",
"lodash": "4.17.21",
"moment-timezone": "0.5.43",
"node-fetch": "2.6.7",
"request": "2.88.2",
"synckit": "0.6.0",
"underscore": "1.4.4",
"xmldom": "0.3.0"
},
"devDependencies": {
"aws-sdk": "^2.1397.0",
"nock": "13.3.1",
"zapier-platform-core": ">=7.6.0"
}
}