-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.3 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 4.3 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@migration-script-runner/core",
"version": "0.8.4",
"description": "Migration Script Runner - Core Framework",
"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",
"_mocha": "npm run test:mocha -- --no-config --require ts-node/register --require test/setup.ts",
"test:unit": "npm run _mocha -- test/unit/**/*.test.ts",
"test:integration": "npm run _mocha -- test/integration/**/*.test.ts",
"test:benchmarks": "npm run _mocha -- test/benchmarks/**/*.test.ts",
"test:watch": "npx nodemon",
"test:watch:unit": "npm run _mocha -- --watch test/unit/**/*.test.ts",
"test:watch:integration": "npm run _mocha -- --watch test/integration/**/*.test.ts",
"test:debug": "npm run test:mocha -- --inspect-brk",
"test:one": "npm run _mocha --",
"test:mocha:report": "npm run test:mocha -- --reporter mocha-junit-reporter --reporter-options mochaFile=./reports/mocha/test-results.xml",
"test:coverage": "nyc npm run test:mocha:report",
"test:report": "rimraf ./reports && npm run lint:report && npm run test:coverage",
"test:mutation": "stryker run",
"test:mutation:incremental": "stryker run --incremental",
"lint": "eslint ./src/ --ext .ts",
"lint:report": "eslint ./src/ --ext .ts --format junit --output-file ./reports/eslint.xml",
"docs:install": "cd docs && bundle install",
"docs:serve": "cd docs && bundle exec jekyll serve",
"docs:build": "cd docs && bundle exec jekyll build",
"postinstall": "[ -f node_modules/fsevents/fsevents.node ] && xattr -d com.apple.quarantine node_modules/fsevents/fsevents.node 2>/dev/null || true",
"prepublishOnly": "npm run build && npm test",
"prepare": "husky"
},
"keywords": [
"migration",
"migration script runner",
"migration script"
],
"author": {
"name": "Volodymyr Lavrynovych",
"email": "[email protected]",
"url": "https://www.instagram.com/vlavrynovych/"
},
"license": "SEE LICENSE IN LICENSE",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@iarna/toml": "^2.2.5",
"@stryker-mutator/core": "^9.3.0",
"@stryker-mutator/mocha-runner": "^9.3.0",
"@stryker-mutator/typescript-checker": "^9.3.0",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-spies": "^1.0.6",
"@types/figlet": "^1.7.0",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.20",
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.25",
"@types/sinon": "^21.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"chai-spies": "^1.1.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-formatter-junit": "^9.0.1",
"eslint-plugin-only-warn": "^1.1.0",
"fast-xml-parser": "^5.3.2",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"mocha": "^11.7.5",
"mocha-junit-reporter": "^2.2.1",
"nodemon": "^3.1.11",
"nyc": "^17.1.0",
"rimraf": "^6.1.0",
"sinon": "^21.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
},
"dependencies": {
"ascii-table3": "^1.0.1",
"auto-envparse": "^2.1.0",
"commander": "^12.1.0",
"figlet": "^1.9.4",
"lodash": "^4.17.21",
"moment": "^2.30.1"
},
"peerDependencies": {
"@iarna/toml": "^2.2.5",
"fast-xml-parser": "^4.5.0",
"js-yaml": "^4.1.0"
},
"peerDependenciesMeta": {
"js-yaml": {
"optional": true
},
"@iarna/toml": {
"optional": true
},
"fast-xml-parser": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/migration-script-runner/msr-core.git"
},
"bugs": {
"url": "https://github.com/migration-script-runner/msr-core/issues",
"email": "[email protected]"
},
"homepage": "https://core.msr.lavr.site/",
"publishConfig": {
"access": "public",
"provenance": true
}
}