forked from zapier/zapier-platform-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.35 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
73
74
75
76
77
78
79
80
{
"name": "zapier-platform-core",
"version": "8.2.1",
"description": "The core SDK for CLI apps in the Zapier Developer Platform.",
"repository": "zapier/zapier-platform-core",
"homepage": "https://zapier.com/",
"author": "Bryan Helmig <[email protected]>",
"license": "UNLICENSED",
"main": "index.js",
"typings": "index.d.ts",
"files": [
"/include/",
"/index.d.ts",
"/index.js",
"/src/"
],
"scripts": {
"preversion": "git pull && npm test",
"version": "node bin/bump-dependencies.js && npm install && git add package.json package-lock.json",
"postversion": "git push && git push --tags",
"test": "mocha -t 10000 --recursive test",
"debug": "mocha -t 10000 --inspect-brk --recursive test",
"test:w": "mocha -t 10000 --recursive test --watch",
"posttest": "npm run lint",
"plain-test": "mocha -t 5000 --recursive test",
"integration-test": "mocha -t 10000 integration-test",
"local-integration-test": "mocha -t 10000 integration-test --local",
"lambda-integration-test": "mocha -t 10000 integration-test --lambda",
"smoke-test": "mocha -t 60000 smoke-test",
"lint": "eslint src test",
"build-integration-test": "bin/build.sh local.bundle.zip",
"upload-integration-test": "bin/upload-lambda.js local.bundle.zip",
"deploy-integration-test": "npm run build-integration-test && npm run upload-integration-test",
"build-boilerplate": "bin/build-boilerplate.sh",
"precommit": "lint-staged"
},
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
},
"engineStrict": true,
"dependencies": {
"bluebird": "3.5.0",
"content-disposition": "0.5.2",
"dotenv": "5.0.1",
"form-data": "2.3.2",
"lodash": "4.17.11",
"node-fetch": "1.7.1",
"oauth-sign": "0.9.0",
"semver": "5.6.0",
"zapier-platform-schema": "8.2.1"
},
"devDependencies": {
"adm-zip": "0.4.9",
"aws-sdk": "2.238.1",
"babel": "6.23.0",
"babel-eslint": "8.2.3",
"eslint": "4.19.1",
"fs-extra": "7.0.0",
"husky": "0.14.3",
"lint-staged": "7.1.0",
"mocha": "5.2.0",
"mock-fs": "4.4.1",
"nock": "9.0.13",
"prettier": "1.11.1",
"should": "11.2.1"
},
"optionalDependencies": {
"@types/node": "8.10.20"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
}
}