-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.5 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
{
"name": "migrations",
"version": "1.7.1",
"description": "Data agnostic migrations",
"main": "index.js",
"dependencies": {
"async": "^3.2.6",
"commander": "^14.0.3"
},
"devDependencies": {
"eslint": "^9.39.4",
"eslint-config-adslot": "^2.2.1",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"rimraf": "^6.1.3"
},
"scripts": {
"format": "prettier ''**/*.js' --write",
"lint:eslint": "eslint '**/*.js'",
"lint:prettier": "prettier '**/*.js' --check",
"lint": "npm run lint:eslint && npm run lint:prettier",
"postversion": "git push -u origin $(git rev-parse --abbrev-ref HEAD) --follow-tags && npm publish && echo '…released.'",
"preversion": "echo 'Releasing…' && npm ci",
"release:major": "npm version major -m 'build: release major version %s'",
"release:minor": "npm version minor -m 'build: release minor version %s'",
"release:patch": "npm version patch -m 'build: release patch version %s'",
"test": "mocha --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/Adslot/node-migrations.git"
},
"keywords": [
"migrate",
"migrations",
"migration",
"data",
"transform"
],
"author": "Dmitry Shirokov <deadrunk@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Adslot/node-migrations/issues"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always",
"printWidth": 120
},
"engines": {
"node": "^24"
}
}