forked from percy/percy-protractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 814 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
{
"name": "@percy/protractor",
"version": "0.1.1",
"description": "Percy.io integration with Protractor",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/percy/percy-protractor.git"
},
"author": "Perceptual Inc.",
"license": "MIT",
"devDependencies": {
"@percy/tslint": "^1.0.0",
"http-server": "^0.11.1",
"protractor": "^5.4.1",
"typescript": "^3.1.6"
},
"scripts": {
"install": "webdriver-manager update",
"prepublishOnly": "npm run build",
"build": "tsc",
"test": "npm run build && protractor conf.js",
"snapshots": "percy exec -- npm run test"
},
"peerDependencies": {},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@percy/agent": "^0.1.7"
}
}