-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.5 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.5 KB
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
{
"name": "zapier-screenly",
"version": "0.6.0",
"description": "Screenly integration for Zapier platform",
"main": "dist/index.js",
"type": "commonjs",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest --config vitest.config.ts --watch",
"test:visual": "echo 'Visual tests are only run in CI environment' && CI=true vitest run --config vitest.visual.config.ts",
"test:visual:ci": "vitest run --config vitest.visual.config.ts",
"deploy": "zapier push",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "npx husky",
"clean": "rimraf coverage __image_snapshots__ dist",
"build": "npm run clean && tsc"
},
"lint-staged": "{\"*.{js,jsx,ts,tsx}\": [\"eslint --fix\", \"prettier --write\"]}",
"private": true,
"dependencies": {
"form-data": "^4.0.4",
"glob": "^11.1.0",
"node-fetch": "^3.3.2",
"rimraf": "^6.0.1",
"zapier-platform-core": "16.5.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitest/coverage-v8": "^3.0.8",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest-image-snapshot": "^6.4.0",
"lint-staged": "^15.2.10",
"markdownlint-cli": "^0.44.0",
"nock": "^13.5.6",
"prettier": "^3.4.2",
"puppeteer": "^23.10.1",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}