-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.91 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
{
"name": "feathers-ottoman",
"version": "0.4.2",
"description": "A Feathers service adapter for the Ottoman ODM",
"main": "dist/",
"types": "dist/",
"scripts": {
"dev": "tsnd --respawn src",
"eslint": "eslint . --ext .ts --ignore-path .gitignore",
"mocha": "nyc ts-mocha \"test/**/*.ts\" --recursive --exit",
"build": "shx rm -rf dist/ && tsc -p tsconfig.json",
"changelog": "logchanges && git add CHANGELOG.md && git commit -am \"Updating CHANGELOG\"",
"verify": "npm run eslint && npm run mocha && npm run build",
"release:patch": "npm version patch && npm run publish",
"prepublishOnly": "npm run verify"
},
"engines": {
"node": ">= 12"
},
"keywords": [
"ottoman",
"feathersjs",
"feathers",
"feathers-ottoman",
"couchbase"
],
"author": {
"name": "bwgjoseph",
"email": "josephgan@live.com.sg"
},
"homepage": "https://github.com/bwgjoseph/feathers-ottoman",
"bugs": {
"url": "https://github.com/bwgjoseph/feathers-ottoman/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bwgjoseph/feathers-ottoman.git"
},
"changelog": {
"repoUrl": "https://github.com/bwgjoseph/feathers-ottoman",
"nobody": true
},
"dependencies": {
"@feathersjs/adapter-commons": "^4.5.15",
"@feathersjs/errors": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"ottoman": "2.2.1"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.5.15",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.45",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"logchanges": "^1.1.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"shx": "^0.3.4",
"ts-mocha": "^10.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}