-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "yarsay",
"version": "1.0.5",
"description": "Tell Pirate Joe what to say",
"main": "lib/yarsay.js",
"bin": "lib/cli.js",
"scripts": {
"build": "cd src; babel ./*.js -d ../lib",
"coverage": "cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run build",
"pretest": "standard ./src/*.js",
"test": "nyc --cache --silent --require babel-core/register mocha",
"posttest": "nyc report --reporter lcov --reporter text"
},
"repository": {
"type": "git",
"url": "http://github.com/yargs/yarsay.git"
},
"keywords": [
"yargs",
"cli",
"yarsay",
"pirate",
"talk"
],
"author": "Ben Coe <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"mocha": "^2.3.4",
"nyc": "^5.1.1",
"standard": "^5.4.1"
},
"dependencies": {
"bluebird": "^3.1.1",
"chalk": "^1.1.1",
"cliui": "^3.1.0",
"get-stdin": "^5.0.1",
"window-size": "^0.1.4",
"yargs": "^3.31.0"
}
}