-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 933 Bytes
/
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
{
"name": "guttenberg-rdf-metadata-extractor",
"version": "1.0.0",
"description": "Guttenberg Project RDF Metadata Extractor",
"main": "bin/cli.js",
"scripts": {
"parse": "node bin/cli.js",
"import": "node bin/download-and-import.js",
"test": "node_modules/.bin/mocha test --exit",
"coverage": "node_modules/nyc/bin/nyc.js npm test",
"db:migrate": "source .env ; node_modules/.bin/sequelize-cli db:migrate --url ${DATABASE_CONNECTION_STRING}"
},
"author": "Anar K. Jafarov <anar.k.jafarov@gmail.com>",
"license": "ISC",
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"mocha": "7.1.2",
"nyc": "15.0.1",
"sequelize-cli": "5.5.1"
},
"dependencies": {
"cli-progress": "3.11.2",
"dotenv": "8.6.0",
"lodash": "4.17.21",
"mysql2": "3.9.9",
"sequelize": "6.37.3",
"tar": "6.1.12",
"unzipper": "0.12.1",
"xml2js": "0.6.2"
}
}