-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "numbers-cli",
"version": "1.0.0",
"description": "CLI tool for http://numbersapi.com",
"main": "numbers-cli.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"build": "npm run clean && mkdir dist && babel src -s -d dist",
"lint": "eslint src",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iquabius/numbers-cli.git"
},
"author": "Josias Iquabius <[email protected]> (https://github.com/iquabius)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iquabius/numbers-cli/issues"
},
"homepage": "https://github.com/iquabius/numbers-cli#readme",
"dependencies": {
"cowsay": "^1.2.1",
"node-fetch": "^1.7.3",
"yargs": "^9.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"prettier": "1.7.4"
}
}