-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.9 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
58
59
60
61
62
63
64
65
{
"name": "lyft-cli",
"version": "0.0.4",
"description": "This is a Lyft Command Line Interface",
"main": "./build/executables/lyft.js",
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir build",
"compile": "babel --presets es2015,stage-0 -d build/ src/",
"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",
"prepublish": "npm run compile",
"test": "npm run build && mocha --compilers js:babel-core/register"
},
"bin": {
"lyft": "build/executables/lyft.js"
},
"repository": {
"type": "git",
"url": "https://github.com/djchie/lyft-cli.git"
},
"keywords": [
"lyft"
],
"author": "Derrick Chie",
"license": "MIT",
"bugs": {
"url": "https://github.com/djchie/lyft-cli/issues"
},
"homepage": "https://github.com/djchie/lyft-cli#readme",
"directories": {
"lib": "build",
"test": "test"
},
"dependencies": {
"@google/maps": "^0.3.1",
"babel-polyfill": "^6.8.0",
"cli-table2": "^0.2.0",
"colors": "^1.1.2 ",
"commander": "^2.9.0",
"convert-units": "^2.0.1",
"currency-symbol-map": "^3.1.0",
"current-location": "^1.1.0",
"enumify": "^1.0.4",
"immutable": "^3.8.1",
"lyft-node": "^0.0.5",
"node-emoji": "^1.4.3"
},
"preferGlobal": true,
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.8.0",
"babel-istanbul": "^0.8.0",
"babel-node-debug": "^2.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-immutable": "^1.6.0",
"coveralls": "^2.11.9",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0 "
}
}