forked from kettanaito/page-with
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
{
"name": "page-with",
"version": "0.5.1",
"description": "A library for usage example-driven in-browser testing of your own libraries.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "git@github.com:kettanaito/page-with.git",
"homepage": "https://github.com/kettanaito/page-with#readme",
"author": "Artem Zakharchenko <kettanaito@gmail.com>",
"license": "MIT",
"scripts": {
"start": "tsc -w && yarn copy",
"lint": "eslint ./{src,test}/**/*.ts",
"clean": "rimraf ./lib",
"copy": "cpy '**/*' '!**/*.ts' ../lib --cwd=./src --no-overwrite --parents",
"build": "yarn lint && yarn clean && tsc && yarn copy",
"test": "jest",
"prepublishOnly": "yarn build && yarn test"
},
"files": [
"lib",
"README.md"
],
"lint-staged": {
"*.ts": [
"eslint",
"prettier"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"cpy-cli": "^3.1.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.3.8",
"jest": "^27.3.1",
"lint-staged": "^10.5.3",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@open-draft/until": "^1.0.3",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/mustache": "^4.1.2",
"@types/uuid": "^8.3.1",
"debug": "^4.3.2",
"express": "^4.17.1",
"headers-polyfill": "^3.0.3",
"memfs": "^3.3.0",
"mustache": "^4.2.0",
"playwright": "^1.16.2",
"uuid": "^8.3.2",
"webpack": "^5.61.0",
"webpack-merge": "^5.8.0"
}
}