-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.66 KB
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
{
"name": "romerol-example-code",
"version": "1.0.0",
"description": "project gutenberg rdf files parser",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=dev npm run migrate && node -e 'require(\"./index\")(()=>{console.log(\"all finished\");})'",
"migrate": "npx sequelize-cli --config config/database.js db:migrate --env $NODE_ENV",
"undo-migration": "npx sequelize-cli --config config/database.js db:migrate:undo --env $NODE_ENV",
"undo-all": "npx sequelize-cli --config config/database.js db:migrate:undo:all --env $NODE_ENV",
"create-migration": "npx sequelize-cli migration:create --name $FILE_NAME",
"pretest": "NODE_ENV=test npm run migrate",
"test": "NODE_ENV=test nyc -r=text-summary -r=lcov -r=cobertura --clean --report-dir=./test-results mocha -t 10000 test/*.js test/dbmodels/*.js --exit",
"download": "node ./lib/download-service"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romerol/romerol-example-code.git"
},
"keywords": [
"parser",
"rdf",
"gutenberg"
],
"author": "Lucas Romero",
"license": "MIT",
"bugs": {
"url": "https://github.com/romerol/romerol-example-code/issues"
},
"homepage": "https://github.com/romerol/romerol-example-code#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"sequelize-cli": "^6.1.0",
"sequelize-test-helpers": "^1.2.2",
"sinon": "^9.0.2"
},
"dependencies": {
"adm-zip": "^0.4.16",
"cheerio": "^1.0.0-rc.3",
"moment": "^2.27.0",
"node-dir": "^0.1.17",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.2.2",
"tar-fs": "^2.1.0"
}
}