forked from uxter/guit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "guit",
"description": "GUI testing tool",
"keywords": [
"tool",
"test",
"gui"
],
"main": "lib/guit.js",
"version": "1.4.12",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/uxter/guit.git"
},
"author": "Vasiliy Shilov (shcoder.ru@ya.ru)",
"dependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"bootstrap": "^3.3.7",
"colors": "^1.1.2",
"commander": "^2.9.0",
"deep-object-diff": "^1.0.1",
"expect": "^1.20.2",
"express": "^4.14.1",
"image-diff": "^1.6.3",
"mkdirp": "^0.5.1",
"phantom": "^4.0.0",
"recursive-readdir-sync": "^1.0.6",
"socket.io": "^1.7.3",
"xmlbuilder": "^8.2.2"
},
"babel": {
"presets": [
"es2015",
"es2017"
],
"plugins": [
"transform-object-rest-spread"
]
},
"bin": {
"guit": "./bin/guit"
},
"scripts": {
"test": "node bin/guit --spec-dir ./example/spec/ --spec-files \\-spec\\.js$",
"prepublish": "babel src --out-dir lib"
}
}