-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "@tdd-buffet/visual",
"publishConfig": {
"access": "public"
},
"version": "0.3.11",
"description": "Visual testing for tdd-buffet",
"keywords": [
"tdd",
"visual",
"testing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NiGhTTraX/tdd-buffet.git",
"directory": "packages/visual"
},
"author": "Andrei Picus",
"license": "MIT",
"homepage": "https://github.com/NiGhTTraX/tdd-buffet/tree/master/packages/visual",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"test": "pnpm exec ts-node ../tdd-buffet/src/bin/index.ts test --config ../../tests/jest.config.js --coverage",
"ts-node": "ts-node -O '{\"target\": \"es6\"}'",
"build": "pnpm run clean && pnpm run compile",
"clean": "rm -rf ./dist",
"link": "rm -rf node_modules/tdd-buffet && cd ../tdd-buffet && ln -s \"$(pwd)/dist\" ../visual/node_modules/tdd-buffet",
"compile": "pnpm run link && tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"tdd-buffet": "^2.0.0"
},
"dependencies": {
"@mugshot/puppeteer": "~3.0.0",
"mitt": "~3.0.0",
"mugshot": "~4.0.2",
"puppeteer": "~19.7.0"
},
"devDependencies": {
"tdd-buffet": "^4.0.0",
"typescript": "~5.4.0"
}
}