This repository has been archived by the owner on Jul 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
{
"name": "zapier-platform-core",
"version": "6.0.0",
"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",
"scripts": {
"preversion": "git pull && npm test",
"version": "node bin/bump-dependencies.js && git add package.json",
"postversion": "git push && git push --tags",
"test": "mocha -t 5000 --recursive test",
"posttest": "npm run lint",
"plain-test": "mocha -t 3000 --recursive test",
"integration-test": "mocha -t 10000 integration-test",
"lint": "eslint src test",
"build": "bin/build.sh local.bundle.zip",
"upload": "bin/upload-lambda.js local.bundle.zip",
"deploy": "bin/build.sh local.bundle.zip && bin/upload-lambda.js local.bundle.zip",
"precommit": "lint-staged"
},
"engines": {
"node": ">=6.10.2",
"npm": ">=3.10.0"
},
"engineStrict": true,
"dependencies": {
"bluebird": "3.5.0",
"content-disposition": "0.5.2",
"dotenv": "5.0.1",
"form-data": "2.2.0",
"lodash": "4.17.4",
"node-fetch": "1.7.1",
"zapier-platform-schema": "6.0.0"
},
"devDependencies": {
"aws-sdk": "2.70.0",
"babel": "6.23.0",
"babel-eslint": "7.2.3",
"eslint": "4.0.0",
"husky": "0.14.3",
"lint-staged": "^7.0.0",
"mocha": "3.4.2",
"mock-fs": "4.4.1",
"nock": "9.0.13",
"prettier": "^1.10.2",
"should": "11.2.1"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
}
}