-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "chrome-js",
"main_": "nw-apps/REPL-GUI/index.html",
"main": "src/api/NodeWebKit-Service",
"single-instance": false,
"window": {
"toolbar": true,
"width": 660,
"height": 500
},
"version": "0.2.0",
"dependencies": {
"async": "^0.9.0",
"chai": "^1.10.0",
"chai-as-promised": "^4.1.1",
"cheerio": "^0.18.0",
"chrome-remote-interface": "^0.5.0",
"coffee-script": "^1.8.0",
"commander": "^2.5.0",
"fluentnode": "*",
"juice": "^0.5.0",
"mocha": "^2.0.1",
"nodewebkit": "^0.11.0",
"request": "^2.49.0",
"selenium-standalone": "^2.44.0-1",
"wd": "^0.3.11"
},
"scripts": {
"start": "coffee ./src/selenium/app.coffee",
"repl-gui": "./bin/node-webkit-repl gui",
"test": "node ./node_modules/mocha/bin/mocha --compilers=coffee:coffee-script/register --recursive -R list tests",
"dev-watch": "node ./node_modules/mocha/bin/mocha --compilers=coffee:coffee-script/register -w --recursive -R list tests bin"
},
"repository": {
"type": "git",
"url": "https://github.com/o2platform/chrome-js.git"
},
"author": {
"name": "Dinis Cruz",
"email": "[email protected]",
"url": "http://blog.diniscruz.com/"
},
"license": "Apache 2",
"bugs": {
"url": "https://github.com/o2platform/chrome-js/issues"
},
"homepage": "https://github.com/o2platform/chrome-js",
"description": "Chrome-JS: Set of APIs to help the automations and scripting of Web based applications (WebSites or WebServices).",
"devDependencies": {
"electron-prebuilt": "^0.29.2"
}
}