-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 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
51
52
{
"name": "igemwiki-api",
"version": "1.1.1",
"description": "NodeJS API and CLI for interacting with an igem wiki (downloading, updating pages, images, etc.)",
"main": "index.js",
"scripts": {
"test": "DEBUG=igemwiki-api mocha test/**/*.spec.js",
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec && rm -rf ./coverage"
},
"bin": {
"igemwiki": "bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igemuoftATG/igemwiki-api.git"
},
"keywords": [
"igem",
"wiki",
"mediawiki",
"api"
],
"author": "Julian Mazzitelli <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/igemuoftATG/igemwiki-api/issues"
},
"homepage": "https://github.com/igemuoftATG/igemwiki-api#readme",
"dependencies": {
"bluebird": "^3.4.6",
"cheerio": "^0.22.0",
"cli": "^1.0.0",
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"fs-extra": "^0.30.0",
"fs-promise": "^0.5.0",
"globby": "^6.0.0",
"htmlparser2": "^3.9.1",
"js-yaml-promise": "^1.0.0",
"lodash": "^4.16.4",
"readline-sync": "^1.4.4",
"request": "^2.74.0",
"request-promise-native": "^1.0.3"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"codecov": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.0.2"
}
}