-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.99 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
{
"name": "moleculer-db-adapter-orientdb",
"version": "0.9.0",
"description": "Moleculer orientdb database adapter",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"typings": "./lib/index.d.ts",
"typescript": {
"definition": "./lib/index.d.ts"
},
"scripts": {
"build": "tsc",
"build:release": "npm run-script clean:release && tsc --p ./tsconfig.release.json",
"clean": "npm run clean:dist",
"clean:release": "rm -rf ./lib/*",
"preversion": "npm test",
"version": "npm run build:release ",
"postversion": "npm run clean:release",
"release:major": "npm run lint && npm version major && git push origin && git push origin --tags",
"release:minor": "npm run lint && npm version minor && git push origin && git push origin --tags",
"release:patch": "npm run lint && npm version patch && git push origin && git push origin --tags",
"prepublishOnly": "npm run lint && npm run test && npm run build:release",
"dev": "nodemon examples/index.ts",
"ci": "jest --watch",
"coverage": "jest --coverage",
"test": "jest --runInBand",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts' 'test/**/*.ts'",
"deps": "npm-check -u",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"db:start": "docker run -d --name orientdb -p 2424:2424 -p 2480:2480 -e ORIENTDB_ROOT_PASSWORD=root orientdb:latest",
"db:stop": "docker container stop orientdb",
"db:remove": "docker container rm orientdb",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"keywords": [
"moleculer",
"microservice",
"orientdb",
"adapter",
"orientdb-adapter"
],
"bugs": {
"url": "https://github.com/saeedtabrizi/moleculer-db-adapter-orientdb/issues"
},
"homepage": "https://github.com/saeedtabrizi/moleculer-db-adapter-orientdb#readme",
"repository": {
"type": "git",
"url": "https://github.com/saeedtabrizi/moleculer-db-adapter-orientdb.git"
},
"author": "Saeed Tabrizi",
"license": "MIT",
"peerDependencies": {
"moleculer": "next",
"moleculer-db": "^0.8.5"
},
"devDependencies": {
"@types/bluebird": "^3.5.29",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.27",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"benchmarkify": "2.1.2",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"moleculer": "^0.14.0",
"nodemon": "1.19.4",
"npm-check": "^5.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
},
"engines": {
"node": ">= 13.1.x"
},
"dependencies": {
"@types/orientjs": "^3.0.10",
"moleculer-db": "^0.8.5",
"orientjs": "^3.0.9",
"parse-function": "^5.6.4",
"snyk": "^1.316.1"
},
"snyk": true
}