forked from stoarca/phantesta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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": "phantesta",
"version": "3.0.0",
"description": "Screenshot diffing for tests",
"main": "dist/phantesta.js",
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "npm run build",
"test": "babel-node tests/testphantesta.js",
"start-phantesta-server": "babel-node dist/bin/phantesta-server.js --host 0.0.0.0 --port 7991 --screenshotPath tests/screenshots"
},
"bin": {
"phantesta-server": "dist/bin/phantesta-server.js"
},
"repository": {
"type": "git",
"url": "git@github.com:stoarca/phantesta.git"
},
"author": "Sergiu Toarca",
"license": "MIT",
"dependencies": {
"argparse": "1.0.9",
"body-parser": "1.15.2",
"express": "4.14.1",
"geckodriver": "1.10.0",
"jasmine_test_utils": "2.0.3",
"phantom": "4.0.0",
"q": "1.4.1",
"request": "2.79.0",
"restify": "7.1.1",
"selenium-webdriver": "3.6.0"
},
"devDependencies": {
"babel-cli": "6.22.2",
"babel-plugin-transform-object-rest-spread": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-2": "6.17.0",
"request-promise": "4.1.1"
}
}