-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "nicovideo-api-nodejs-client",
"version": "0.0.1",
"description": "The Node.js library to access to nicovideo.jp.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"doc": "doc"
},
"scripts": {
"tsc": "tsc",
"test": "mocha -r ts-node/register -R spec tests/**/*Spec.ts"
},
"author": "SSW-SCIENTIFIC",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "7.1.0",
"@types/cheerio": "^0.22.7",
"@types/fs-extra": "^5.0.0",
"@types/mocha": "^2.2.48",
"@types/query-string": "^5.0.1",
"@types/sinon": "^4.1.3",
"@types/xml-js": "^1.0.0",
"awesome-typescript-loader": "^3.4.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"fs-extra": "^5.0.0",
"mocha": "^5.0.0",
"sinon": "^4.2.2",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.7.1",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"@3846masa/axios-cookiejar-support": "^0.3.2",
"axios": "^0.17.1",
"cheerio": "^1.0.0-rc.2",
"query-string": "^5.1.0",
"tough-cookie": "^2.3.3",
"xml-js": "^1.6.2"
}
}