-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 932 Bytes
/
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
{
"name": "nicolive-api",
"version": "0.8.0",
"description": "api client for live.nicovideo.jp",
"main": "lib/index.js",
"files": [
"lib",
"*.md"
],
"scripts": {
"prepublish": "npm run build",
"lint": "eslint ./src",
"build": "babel src -d lib",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsuwatch/nicolive-api.git"
},
"keywords": [
"niconico"
],
"author": "tsuwatch",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsuwatch/nicolive-api/issues"
},
"homepage": "https://github.com/tsuwatch/nicolive-api#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"eslint": "^3.17.0"
},
"dependencies": {
"cheerio": "^0.22.0",
"querystring": "^0.2.0",
"request": "^2.79.0"
}
}