-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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": "lyft-node",
"version": "0.0.5",
"description": "This is a Node.js Wrapper for the Lyft API's public scope endpoints",
"main": "./build/index.js",
"scripts": {
"test": "npm run build && mocha --compilers js:babel-core/register",
"coverage": "babel-node ./node_modules/istanbul/lib/cli cover node_modules/.bin/_mocha -- --compilers js:babel-register ",
"coveralls": "npm run compile && npm run-script coverage && node_modules/.bin/coveralls < coverage/lcov.info",
"build": "babel src --presets babel-preset-es2015 --out-dir build",
"prepublish": "npm run compile",
"compile": "babel --presets es2015,stage-0 -d build/ src/"
},
"repository": {
"type": "git",
"url": "https://github.com/djchie/lyft-node.git"
},
"keywords": [
"lyft"
],
"author": "Derrick Chie",
"license": "MIT",
"bugs": {
"url": "https://github.com/djchie/lyft-node/issues"
},
"homepage": "https://github.com/djchie/lyft-node#readme",
"dependencies": {
"dotenv": "2.0.0",
"enumify": "1.0.4",
"immutable": "3.8.1",
"request": "^2.79.0",
"request-promise": "4.1.1"
},
"devDependencies": {
"chai": "3.5.0",
"chai-immutable": "1.6.0",
"mocha": "2.4.5",
"coveralls": "2.11.9",
"mocha-lcov-reporter": "1.2.0 ",
"istanbul": "1.0.0-alpha.2",
"babel-core": "6.8.0",
"babel-preset-es2015": "6.6.0",
"babel-node-debug": "2.0.0",
"babel-cli": "6.7.7",
"babel-preset-stage-0": "6.5.0",
"babel-register": "6.8.0",
"babel-polyfill": "6.8.0",
"babel-istanbul": "0.8.0"
},
"directories": {
"lib": "build",
"test": "test"
}
}