-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 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
{
"name": "zapier-screenly",
"version": "0.5.0",
"description": "Screenly integration for Zapier platform",
"main": "index.js",
"type": "commonjs",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "jest --config=jest.config.js --coverage",
"test:watch": "jest --watch",
"test:visual": "echo 'Visual tests are only run in CI environment' && CI=true jest --config=jest.visual.config.js",
"test:visual:ci": "jest --config=jest.visual.config.js",
"deploy": "zapier push",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "npx husky",
"clean": "rimraf coverage __image_snapshots__",
"build": "echo 'No build step needed'"
},
"lint-staged": "{\"*.{js,jsx,ts,tsx}\": [\"eslint --fix\", \"prettier --write\"]}",
"private": true,
"dependencies": {
"form-data": "^4.0.1",
"glob": "^11.0.0",
"node-fetch": "^3.3.2",
"rimraf": "^6.0.1",
"zapier-platform-core": "15.19.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-image-snapshot": "^6.4.0",
"lint-staged": "^15.2.10",
"markdownlint-cli": "^0.43.0",
"nock": "^13.5.6",
"prettier": "^3.4.2",
"puppeteer": "^23.10.1"
},
"jest": {
"testEnvironment": "node",
"transform": {
"\\\\^": {
"+\\\\": {
"js$": "babel-jest"
}
}
},
"transformIgnorePatterns": "[\"node_modules/(?!(node-fetch|fetch-blob|formdata-polyfill|data-uri-to-buffer|web-streams-polyfill)/)\"]"
}
}