-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 937 Bytes
/
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
{
"name": "zapier-platform-example-app-typescript",
"version": "1.0.0",
"description": "An example app for the Zapier platform.",
"repository": "zapier/zapier-platform-example-app-typescript",
"homepage": "https://zapier.com/",
"author": "Bryan Helmig <bryan@zapier.com>",
"license": "BSD-3-Clause",
"main": "index.js",
"scripts": {
"zapier-dev": "tsc --watch",
"zapier-push": "yarn build && zapier push",
"lint": "tslint -p .",
"pretest": "npm run build",
"test": "jest lib/test",
"posttest": "npm run lint",
"build": "tsc"
},
"dependencies": {
"zapier-platform-core": "9.4.0"
},
"devDependencies": {
"@types/jest": "23.3.13",
"@types/node": "10.17.17",
"jest": "^24",
"tslint": "5.12.1",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.8"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}