-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "istex-api-harvester",
"version": "2.7.2",
"description": "Programme écrit en NodeJS permettant de moissonner les corpus proposés par l'API de la plateforme ISTEX.",
"preferGlobal": "true",
"main": "istex-api-harvester.njs",
"scripts": {
"test": "mocha"
},
"contributors": [
{
"name": "Stéphane Gully",
"email": "stephane.gully@gmail.com"
},
{
"name": "Claude Niederlender",
"email": "claude.niederlender@gmail.com"
},
{
"name": "Francis Bondo",
"email": "francis.bondo@inist.fr"
}
],
"license": "BSD",
"dependencies": {
"async": "~0.2.9",
"commander": "~2.9.0",
"fs-extra": "^0.9.1",
"mkdirp": "^0.5.5",
"prompt": "^0.2.14",
"superagent": "^6.1.0",
"superagent-proxy": "^3.0.0",
"uuid": "~1.4.1"
},
"bin": {
"istex-api-harvester": "./istex-api-harvester.njs"
},
"engines": {
"node": ">= 0.10.x"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^9.1.3",
"node-uuid": "^1.4.7"
}
}