forked from jccr/webdriver-http-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.31 KB
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
54
55
56
57
{
"name": "webdriver-http-sync",
"version": "2.6.0",
"description": "Sync HTTP implementation of the WebDriver protocol",
"license": "BSD-3-Clause",
"main": "lib/index.js",
"homepage": "https://github.com/groupon/webdriver-http-sync",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/groupon/webdriver-http-sync"
},
"bugs": {
"url": "https://github.com/groupon/webdriver-http-sync/issues"
},
"scripts": {
"build": "rm -rf lib && coffee --no-header -cbo lib src",
"pretest": "npm run build",
"test": "mocha",
"posttest": "nlm verify",
"watch": "coffee --no-header -wcbo lib src & nodemon -w lib -w test -e coffee,js,json -x \"mocha\""
},
"nlm": {
"license": {
"files": [
"src"
]
}
},
"dependencies": {
"assertive": "^2.0.0",
"bindings": "~1.2.1",
"caseless": "~0.11.0",
"coffee-script": "^1.10.0",
"concat-stream": "^1.4.7",
"debug": "^2.1.1",
"lodash": "^4.6.1",
"nan": "^2.0.9"
},
"devDependencies": {
"mocha": "^2.0.0",
"nlm": "^2.0.0",
"nodemon": "^1.0.0"
},
"author": {
"name": "Sean Massa",
"email": "smassa@groupon.com"
},
"files": [
"*.js",
"binding.gyp",
"curllib.cc",
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}