This repository has been archived by the owner on Jun 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
101 lines (101 loc) · 2.95 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "zapier-platform-cli",
"version": "8.2.1",
"description": "The CLI for apps in the Zapier Developer Platform.",
"repository": "zapier/zapier-platform-cli",
"homepage": "https://zapier.com/",
"author": "Bryan Helmig <[email protected]>",
"license": "UNLICENSED",
"main": "zapier.js",
"files": [
"/src/*.js",
"/src/commands/",
"/src/utils/",
"/scaffold/",
"/zapier.js"
],
"engines": {
"node": ">=8.10.0"
},
"scripts": {
"docs": "echo docs are gone, do not run here && exit 1",
"preversion": "git pull && npm run validate",
"version": "npm run docs && npm run gen-completions && git add docs/* goodies/* README.md",
"postversion": "git push && git push --tags",
"lint-snippets": "eslint snippets --rule 'no-unused-vars: 0' --ignore-pattern snippets/next.js --ignore-pattern 'snippets/dynamic-dropdowns-*'",
"lint-code": "eslint zapier.js src",
"lint": "npm run lint-snippets && npm run lint-code",
"test": "NODE_ENV=test mocha -t 50000 --recursive src/tests",
"smoke-test": "NODE_ENV=test mocha -t 30000 --recursive src/smoke-tests",
"zapier": "zapier.js",
"validate-templates": "./scripts/validate-app-templates.js",
"set-template-versions": "./scripts/set-app-template-versions.js",
"gen-completions": "./scripts/gen-zsh-completions.js > ./goodies/zsh/_zapier && ./scripts/gen-bash-completions.js > ./goodies/bash/_zapier",
"test-convert": "./scripts/test-convert.js",
"precommit": "lint-staged",
"validate": "npm run test && npm run lint"
},
"dependencies": {
"adm-zip": "0.4.11",
"archiver": "1.3.0",
"async": "2.1.5",
"browserify": "16.2.0",
"buffer": "5.0.6",
"cli-table3": "0.5.0",
"colors": "1.1.2",
"compress-commons": "1.2.0",
"core-js": "2.4.1",
"eslint": "4.17.0",
"eslint-plugin-node": "6.0.0",
"fs-extra": "3.0.1",
"glob": "7.1.1",
"ignore": "3.3.8",
"klaw": "1.3.1",
"leven": "2.1.0",
"lodash": "4.17.11",
"minimatch": "3.0.3",
"node-fetch": "1.7.1",
"normalize-path": "2.0.1",
"ora": "2.1.0",
"parse-gitignore": "0.4.0",
"prettier": "1.9.2",
"read": "1.0.7",
"readable-stream": "2.2.2",
"semver": "5.5.0",
"string-length": "1.0.1",
"strip-comments": "0.4.4",
"tar-stream": "1.5.2",
"through2": "2.0.3",
"tmp": "0.0.31",
"update-notifier": "2.3.0",
"zip-stream": "1.1.0"
},
"devDependencies": {
"decompress": "4.2.0",
"eslint-plugin-mocha": "^5.3.0",
"fetch-mock": "5.11.0",
"husky": "0.14.3",
"jayson": "2.0.6",
"lint-staged": "6.0.0",
"litdoc": "1.5.6",
"markdown-toc": "1.1.0",
"mocha": "5.1.1",
"mock-fs": "4.10.0",
"ngrok": "2.2.10",
"node-watch": "0.5.4",
"should": "11.2.1",
"yamljs": "0.3.0"
},
"bin": {
"zapier": "zapier.js"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
}
}