-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.37 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
54
55
56
57
{
"name": "checkr-api",
"description": "Checkr Node.js Bindings",
"keywords": [
"checkr",
"checkr-node",
"rest",
"api",
"wrapper",
"checkr.com"
],
"version": "1.0.1",
"homepage": "https://github.com/shrav/checkr-node",
"author": "Shrav Mehta <[email protected]> (https://www.shravmehta.com/)",
"dependencies": {
"request": "^2.39.0",
"coveralls": "^2.11.1",
"mocha-lcov-reporter": "0.0.1",
"gulp": "^3.8.6",
"gulp-load-plugins": "^0.5.3",
"gulp-coveralls": "^0.1.2",
"gulp-mocha": "^0.5.2"
},
"devDependencies": {
"gulp": "~3.8.6",
"gulp-jshint": "~1.8.2",
"chai": "^1.9.1",
"yargs": "^1.3.1",
"gulp-load-plugins": "^0.5.3",
"jshint-stylish": "~0.4.0",
"mocha": "~1.21.3",
"gulp-mocha": "~0.5.2",
"gulp-istanbul": "~0.2.1",
"istanbul": "^0.3.0",
"gulp-jscs": "^1.0.0",
"gulp-istanbul-enforcer": "^1.0.3",
"gulp-exit": "0.0.2",
"gulp-clean": "^0.3.1",
"gulp-util": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/shrav/checkr-node"
},
"bugs:": "https://github.com/shrav/checkr-node/issues",
"main": "./lib/index",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "gulp test",
"enforce": "gulp enforce",
"lint": "gulp lint",
"style": "gulp style",
"coveralls": "gulp coveralls"
}
}