-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 2.46 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "arango-migrate",
"version": "1.7.0",
"description": "Migration tools for ArangoDB",
"author": "Tim Mikeladze <tim.mikeladze@gmail.com>",
"keywords": [
"arango",
"arangodb",
"arango migrations",
"migration",
"arango-migrate",
"arangodb migrations"
],
"repository": {
"type": "git",
"url": "https://github.com/TimMikeladze/arango-migrate.git"
},
"license": "MIT",
"files": [
"./dist"
],
"source": "src/index.ts",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"bin": "./dist/cli.module.js",
"scripts": {
"dev": "microbundle watch src/{index,cli}.ts --target node",
"build": "rm -rf dist && tsc && microbundle src/{index,cli}.ts --target node",
"lint": "eslint --fix {src,__tests__}/**/*.ts",
"test": "yarn node --experimental-vm-modules $(yarn bin jest) --coverage",
"commit": "git-cz",
"prepublishOnly": "yarn lint && yarn build"
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"release-it": {
"git": {
"commitMessage": "chore(publish): ${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"devDependencies": {
"@ryansonshine/commitizen": "4.2.8",
"@ryansonshine/cz-conventional-changelog": "3.3.4",
"@types/glob": "8.0.0",
"@types/jest": "29.2.0",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"arangojs": "^8.6.0",
"dotenv": "16.0.3",
"eslint": "8.26.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "16.4.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"husky": "8.0.1",
"jest": "29.2.2",
"lint-staged": "13.0.3",
"microbundle": "0.15.1",
"release-it": "17.0.1",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
},
"dependencies": {
"commander": "^9.4.1",
"glob": "^8.0.3",
"slugify": "^1.6.5"
},
"peerDependencies": {
"arangojs": ">=7.8.0"
},
"resolutions": {
"semver": ">=7.5.2"
}
}