-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "leagueofcomicgeeks",
"version": "1.1.0",
"description": "Unofficial Node.js library for interacting with League of Comic Geeks",
"main": "index.js",
"directories": {
"lib": "./src",
"test": "./test",
"example": "./examples"
},
"scripts": {
"test-integration": "jasmine test/integration.spec.js --random=false",
"test": "npm run lint",
"lint": "eslint ."
},
"keywords": [
"comic",
"league of comic geeks"
],
"author": "Alistair Brown <[email protected]> (http://alistairjcbrown.com)",
"repository": "https://github.com/alistairjcbrown/leagueofcomicgeeks",
"bugs": "https://github.com/alistairjcbrown/leagueofcomicgeeks/issues",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"cookie": "^0.3.1",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"query-string": "^6.1.0",
"request": "^2.87.0"
},
"devDependencies": {
"dotenv": "^6.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.1",
"fs-extra": "^6.0.1",
"jasmine": "^3.1.0",
"prettier": "^1.13.5",
"sinon": "^6.0.0"
}
}