-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "node-postmates",
"version": "1.9.1",
"description": "Node.js wrapper for the Postmates API",
"main": "lib/index.js",
"scripts": {
"test": "mocha test/*.js --delay 800 --timeout 5000",
"prepare": "node_modules/babel-cli/bin/babel.js src --out-dir lib"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexleventer/node-postmates.git"
},
"author": "Alex Leventer",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexleventer/node-postmates/issues"
},
"homepage": "https://github.com/alexleventer/node-postmates#readme",
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"check-node-version": "^3.2.0",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-react": "^7.10.0",
"mocha": "^5.2.0",
"should": "^13.2.1"
},
"dependencies": {
"request": "^2.87.0",
"request-promise": "^4.2.2"
}
}