-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
94 lines (94 loc) · 2.38 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "getme",
"version": "1.4.10",
"description": "CLI utility for everyday tasks",
"repository": {
"type": "git",
"url": "https://github.com/gabrielgodoy/getme"
},
"watch": {
"build": "src/**/*.js"
},
"scripts": {
"prepublish": "npm run build",
"build": "./node_modules/.bin/babel ./src -d dist",
"watch": "npm-watch",
"test": "mocha --colors --reporter spec ./src/**/*.test.js",
"test:watch": "npm test -- --watch",
"coverage": "istanbul cover --report lcov --report text --config istanbul.yml _mocha ./src/**/*.js",
"coveralls": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly --config istanbul.yml -- -R spec ./src/**/*.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "./node_modules/.bin/eslint './src/**/*.js'",
"precommit": "npm run lint && npm test",
"prepush": "npm run lint"
},
"eslintConfig": {
"extends": "airbnb-base",
"plugins": [
"import"
],
"rules": {
"no-console": 0
},
"env": {
"browser": true,
"mocha": true
}
},
"author": "Gabriel Godoy",
"keywords": [
"google",
"maps",
"places",
"weather"
],
"bin": {
"getme": "./dist/index.js"
},
"babel": {
"presets": [
"es2015"
]
},
"preferGlobal": true,
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.23.0",
"chalk": "^1.1.3",
"co": "^4.6.0",
"co-prompt": "^1.0.0",
"commander": "^2.9.0",
"ini": "^1.3.4",
"inquirer": "^3.0.6",
"moment": "^2.18.1",
"node-emoji": "^1.4.3",
"oauth": "^0.9.15",
"open": "0.0.5",
"ora": "^1.2.0",
"request": "^2.81.0",
"speedtest-net": "^1.2.11",
"thunkify": "^2.1.2",
"urlencode": "^1.1.0"
},
"bugs": {
"url": "https://github.com/gabrielgodoy/getme/issues",
"email": "hi@gabrielgodoy.com"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.13.3",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"nock": "^9.0.2",
"npm-watch": "^0.1.7",
"rewire": "^2.5.2",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0"
}
}