-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.4 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
{
"name": "@bloom-perf/yaml-pptr",
"version": "0.0.7",
"description": "A library to generate puppeteer browser controls through a YAML api.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@testdeck/mocha": "0.3.3",
"@types/chai": "5.0.1",
"@types/js-yaml": "4.0.9",
"@types/mocha": "10.0.10",
"chai": "5.1.2",
"cross-env": "7.0.3",
"esbuild": "0.24.2",
"esbuild-node-externals": "1.16.0",
"mocha": "11.1.0",
"nyc": "17.1.0",
"prettier": "3.4.2",
"puppeteer": "24.1.1",
"ts-mockito": "2.6.1",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"dependencies": {
"js-yaml": "^4.1.0",
"zod": "^3.23.8"
},
"scripts": {
"build": "rm -rf dist && node esbuild.js && tsc",
"test": "mocha --loader ts-node/esm -r ts-node/register test/**/*.spec.ts",
"test:coverage": "nyc npm run test"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bloom-Perf/yaml-pptr.git"
},
"keywords": [
"puppeteer",
"yaml",
"testing"
],
"author": "Bloom-perf",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Bloom-Perf/yaml-pptr/issues"
},
"homepage": "https://github.com/Bloom-Perf/yaml-pptr#readme"
}