-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 991 Bytes
/
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
{
"name": "browser-installations",
"version": "1.0.3",
"description": "Package for detection versions of installed browsers and their management",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"assemble": "tsc",
"test": "npm run assemble && cd spec && rimraf node_modules/browser-installations/ && npm i && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petrkoutnycz/browser-installations.git"
},
"keywords": [
"browser",
"browser-driver"
],
"author": "Petr Koutny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/petrkoutnycz/browser-installations/issues"
},
"homepage": "https://github.com/petrkoutnycz/browser-installations#readme",
"devDependencies": {
"@types/node": "^8.5.2",
"rimraf": "~2.5.0",
"typescript": "~2.6.0"
},
"dependencies": {
"@types/lodash": "~4.14.0",
"lodash": "~4.17.0",
"log4js": "~2.4.0"
}
}