-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "adbm",
"version": "2.0.3",
"description": "Simple, pluggable async database migration tool for node.js >= 12.0.0",
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daerion/adbm.git"
},
"keywords": [
"database",
"mongo",
"mongodb",
"migration"
],
"author": {
"name": "Michael Smesnik",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/daerion/adbm/issues"
},
"homepage": "https://github.com/daerion/adbm#readme",
"scripts": {
"prepublishOnly": "echo \"Do not use publish script directly, use publish:dist script instead.\"; exit 1",
"preversion": "yarn run lint && yarn run test",
"lint": "eslint \"src/**/*.ts\"",
"test": "NODE_ENV=test jest",
"build": "rm -rf dist/* && tsc -b tsconfig.build.json && cp package.json .npmignore *.md LICENSE dist/",
"pack:dist": "yarn run build; (cd dist; yarn pack --filename package.tgz)",
"publish:dist": "yarn run pack:dist; yarn publish dist/package.tgz --ignore-scripts"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"tslib": "^2.1.0"
}
}