-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.47 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "migration-script-runner",
"version": "0.1.11",
"description": "Migration Script Runner",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"start": "start:ts",
"start:js": "npm run build && node dist/index.js",
"start:ts": "npm run build && npx ts-node src/index.ts",
"build": "rimraf ./dist && tsc && rimraf ./dist/test",
"test": "npm run lint && npm run test:mocha",
"test:mocha": "cross-env TS_NODE_FILES=true mocha --color --exit test/**/*.ts",
"test:watch": "npx nodemon",
"test:mocha:report": "cross-env TS_NODE_FILES=true mocha --reporter mocha-junit-reporter --reporter-options mochaFile=./reports/mocha/test-results.xml --color --exit test/**/*.ts",
"test:coverage": "nyc npm run test:mocha:report",
"test:coverage:coveralls": "nyc report --reporter=text-lcov | coveralls",
"test:report": "rimraf ./reports && npm run lint:report && npm run test:coverage",
"lint": "eslint ./src/ --ext .ts",
"lint:report": "eslint ./src/ --ext .ts --format junit --output-file ./reports/eslint.xml"
},
"keywords": [
"migration",
"migration script runner",
"migration script"
],
"author": {
"name": "Volodymyr Lavrynovych",
"email": "volodyalavrynovych@gmail.com",
"url": "https://www.instagram.com/vlavrynovych/"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/chai-as-promised": "^7.1.7",
"@types/chai-spies": "^1.0.5",
"@types/figlet": "^1.5.7",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"@types/sinon": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.11.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.1.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-plugin-only-warn": "^1.1.0",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.1",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/lodash": "^4.14.200",
"ascii-table3": "^0.9.0",
"figlet": "^1.7.0",
"lodash": "^4.17.21",
"moment": "^2.29.4"
},
"repository": {
"type": "git",
"url": "https://github.com/vlavrynovych/msr.git"
},
"bugs": {
"url": "https://github.com/vlavrynovych/msr/issues",
"email": "volodyalavrynovych@gmail.com"
}
}