-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.25 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
{
"name": "headless-eval",
"version": "2.1.1",
"description": "CLI tool to evaluate a JS snippet in a webpage context with headless chrome",
"homepage": "https://github.com/vith/headless-eval",
"repository": {
"type": "git",
"url": "https://github.com/vith/headless-eval.git"
},
"license": "ISC",
"author": "Jason Papakostas <[email protected]>",
"type": "module",
"main": "dist/lib.js",
"bin": {
"headless-eval": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"start": "node --loader ts-node/esm src/cli.ts",
"test": "ava",
"test:local-gitlab-ci": "gitlab-runner exec shell test"
},
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"test/**/*",
"!test/fixtures/**/*"
],
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"dependencies": {
"commander": "^9.1.0",
"puppeteer": "^13.5.2",
"read-pkg-up": "^9.1.0"
},
"devDependencies": {
"@koa/router": "10.1.1",
"@types/koa": "2.13.5",
"@types/koa__router": "8.0.11",
"@types/node": "17.0.23",
"@types/npm": "7.19.0",
"@types/puppeteer": "5.4.7",
"ava": "4.3.3",
"execa": "6.1.0",
"get-port": "6.1.2",
"http-status-codes": "2.2.0",
"koa": "2.13.4",
"pkg-dir": "6.0.1",
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}