-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "ebay-sdk",
"version": "0.5.8",
"description": "eBay SDK with promise / stream interface",
"main": "init.js",
"scripts": {
"build": "babel --source-maps inline, -d dist/ src/",
"lint": "eslint src/**.js",
"test": "npm run build && mocha --require source-map-support/register --require babel-register",
"prepublish": "npm run lint && npm run test"
},
"keywords": [
"ebay"
],
"author": "John Wu",
"license": "ISC",
"dependencies": {
"babel-runtime": "^6.9.2",
"check-types": "^7.0.0",
"lodash": "^4.0.0",
"moment": "^2.14.1",
"qs": "git+https://github.com/katsuroo/qs.git",
"request": "^2.75.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.15.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.14.0",
"bluebird": "^3.4.6",
"chai": "^3.2.0",
"eslint": "^2.13.1",
"memorystream": "^0.3.1",
"mocha": "^3.0.0",
"mockery": "^1.7.0",
"nock": "^5.2.1",
"sinon": "^1.17.2",
"source-map-support": "^0.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/katsuroo/eBay-SDK.git"
}
}