-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "irccloud-cli",
"version": "0.4.1",
"description": "irccloud commandline interface",
"keywords": [
"command",
"irccloud",
"websocket"
],
"bin": {
"ic": "./bin/ic"
},
"main": "./lib/index.js",
"scripts": {
"build:lib": "babel ./src/lib.js -o ./lib/index.js",
"build": "npm run build:lib && babel ./src/bin.js -o ./bin/ic && chmod 755 ./bin/ic",
"prepublish": "npm run build",
"tape": "tape -r babel-register test/*.js",
"test:cov": "babel-node node_modules/babel-istanbul/lib/cli.js cover node_modules/tape/bin/tape -r babel-register test/*.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "npm run test:cov"
},
"repository": {
"type": "git",
"url": "https://github.com/yhsiang/irccloud-cli.git"
},
"author": "Yuan Hsiang Cheng <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.5.0",
"cologger": "~1.1.2",
"commander": "^2.6.0",
"request-promise": "^2.0.0",
"ws": "^7.2.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-istanbul": "^0.6.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.2",
"coveralls": "^2.11.6",
"nock": "^7.0.2",
"sinon": "^1.17.3",
"tape": "^4.4.0"
},
"engines": {
"node": ">=4.1.0"
}
}