-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.14 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
{
"name": "postmen",
"description": "Postmen SDK for JavaScript in the browser and Node.js",
"version": "2.0.0",
"homepage": "https://github.com/Postmen/sdk-js",
"author": {
"name": "Postmen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/Postmen/sdk-js.git"
},
"bugs": {
"url": "https://github.com/Postmen/sdk-js/issues"
},
"main": "index.js",
"engines": {
"node": ">= 4.2"
},
"scripts": {
"lint": "grunt lint",
"test": "grunt lint && grunt coverage"
},
"dependencies": {
"lodash": "^4.5.0",
"request": "^2.69.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"eslint-config-aftership": "^1.5.0",
"grunt": "^0.4.5",
"grunt-eslint": "^17.3.1",
"grunt-mocha-istanbul": "^3.0.1",
"istanbul": "^0.4.1",
"load-grunt-config": "^0.19.1",
"mocha": "^2.3.4",
"nock": "^7.0.2",
"chai": "^3.4.1",
"sinon": "^1.17.2",
"http-proxy": "^1.12.0"
},
"keywords": [
"postman",
"postman sdk",
"postmen",
"postmen sdk"
],
"license": "MIT",
"pre-commit": [
"lint"
],
"private": false
}