forked from mcrowe/headless-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "@junglescoutofficial/headless-browser",
"version": "0.0.10",
"description": "Simple in-memory browser that manages cookies.",
"author": "Mitch Crowe <[email protected]> (http://www.mitchcrowe.com)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Junglescout/headless-browser.git"
},
"scripts": {
"test": "mocha -u qunit --recursive -r ./node_modules/ts-node/register test/*",
"build": "tsc",
"watch": "tsc -w"
},
"main": "lib/index.js",
"typings": "lib/index",
"files": [
"lib/"
],
"dependencies": {
"@mcrowe/result": "0.0.2",
"request": "git+https://[email protected]/Junglescout/request.git"
},
"devDependencies": {
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.12",
"mocha": "^6.2.2",
"ts-node": "^3.1.0",
"typescript": "^2.4.1"
},
"bugs": {
"url": "https://github.com/Junglescout/headless-browser/issues"
},
"homepage": "https://github.com/Junglescout/headless-browser#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}