-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
110 lines (110 loc) · 2.66 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "iloa",
"version": "0.3.4",
"description": "A command line tool for gaining knowledge.",
"author": "Andrew Prentice",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard": {
"ignore": [
"/bin/**/*.js",
"/test/test.js"
]
},
"main": "bin/iloa.js",
"bin": {
"iloa": "bin/iloa.js"
},
"scripts": {
"bin": "cross-env BABEL_ENV=dev babel src -d bin",
"bump": "git push origin master --tags && npm publish",
"clean": "rimraf bin coverage .nyc_output test/output",
"climate": "codeclimate-test-reporter < lcov.info",
"instrument": "cross-env BABEL_ENV=test babel src -d bin",
"lint": "standard --fix",
"pretest": "cross-env BABEL_ENV=test babel test/test.es6 -o test/test.js",
"release": "standard-version",
"report": "nyc report -r text-lcov > lcov.info && nyc report -r html",
"reset": "npm run clean && npm run bin",
"test": "cross-env NODE_ENV=test nyc _mocha test/test.js",
"watch": "babel -w src -d bin"
},
"nyc": {
"cache": true,
"include": [
"src/**/*"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"chalk": "^1.1.3",
"date-fns": "^1.27.2",
"dot-prop": "^4.1.0",
"fs-extra": "^2.0.0",
"glob": "^7.1.1",
"good-guy-http": "^1.7.4",
"lodash": "^4.17.4",
"noon": "^1.0.13",
"ora": "^1.1.0",
"term-size": "^0.1.1",
"wrap-ansi": "^2.1.0",
"xml2js": "^0.4.17",
"yargonaut": "^1.1.2",
"yargs": "github:yargs/yargs"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-latest": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.0",
"cross-env": "^3.1.4",
"cz-conventional-changelog": "^1.2.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"rimraf": "^2.5.4",
"sinon": "^1.17.7",
"standard": "^8.6.0",
"standard-version": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drawnepicenter/iloa.git"
},
"bugs": {
"url": "https://github.com/drawnepicenter/iloa/issues"
},
"homepage": "https://github.com/drawnepicenter/iloa#readme",
"keywords": [
"cli",
"search",
"api",
"duckduckgo",
"eol",
"encyclopedia",
"weather",
"underground",
"wikipedia",
"wolfram",
"alpha",
"scraper",
"rest",
"reference",
"lookup",
"summary",
"knowledge",
"information",
"disambiguation"
]
}