-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "phantesta",
"version": "4.0.24",
"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": "node -r esm dist/bin/phantesta-server.js --host 0.0.0.0 --port 7991 --screenshotPath tests/screenshots",
"start-remote-server": "node -r esm dist/bin/start-remote-server.js --port 3000 --savePath ~/haha"
},
"bin": {
"phantesta-server": "dist/bin/phantesta-server.js",
"remote-phantesta-server": "dist/bin/start-remote-server.js",
"upload-to-remote-phantesta": "dist/bin/upload-server.js"
},
"repository": {
"type": "git",
"url": "[email protected]:stoarca/phantesta.git"
},
"author": "Sergiu Toarca",
"license": "MIT",
"dependencies": {
"argparse": "2.0.1",
"babel-preset-node6": "11.0.0",
"body-parser": "1.19.0",
"express": "4.17.1",
"geckodriver": "2.0.0",
"glob": "7.1.6",
"jasmine_test_utils": "2.0.3",
"request": "2.79.0",
"selenium-webdriver": "4.0.0-beta.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1"
}
}