-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.01 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
{
"name": "ann_client",
"version": "2.2.1",
"description": "a javascript client for anime news network",
"main": "dist/index.js",
"scripts": {
"clean": "rm ./index.js --force && find ./test -name '*.js*' -exec rm {} \\;",
"pretest": "npm run clean && tsc -p ./",
"test": "./node_modules/.bin/mocha --timeout 0 --ui bdd --require ts-node/register test/**/*.spec.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"bottleneck": "^2.8.0",
"cheerio": "^1.0.0-rc.2",
"random-useragent": "^0.3.1",
"request": "^2.88.0",
"rxjs": "^6.3.1",
"xml-js": "^1.6.7",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^2.2.44",
"@types/node": "^8.5.10",
"@types/request": "^2.0.7",
"@types/rx": "^4.1.1",
"axios": "^0.19.0",
"chai": "^4.1.2",
"chai-datetime": "^1.5.0",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1",
"rewiremock": "^3.0.0",
"ts-node": "^3.3.0",
"typescript": "^2.5.3"
}
}