forked from couchbaselabs/node-ottoman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"description": "ODM for Couchbase Node.js driver.",
"keywords": [
"couchbase",
"odm",
"nosql",
"json",
"document"
],
"main": "./build/lib/ottoman.js",
"license": "Apache2",
"name": "@etops/ottoman",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"test": "NODE_ENV=test TS_NODE_PROJECT='./tsconfig.json' ./node_modules/mocha/bin/_mocha --require ts-node/register --colors './test/*.test.ts' --exit",
"tsc:w": "tsc -w",
"lint": "eslint ./lib --ext .ts"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"jsonpath": "^1.0.2",
"lodash": "^4.17.15",
"lodash-deep": "^2.0.0",
"uuid": "~3.3.2"
},
"optionalDependencies": {
"couchbase": "^2.6.11"
},
"devDependencies": {
"@types/lodash": "^4.14.165",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"ink-docstrap": "git+https://github.com/brett19/docstrap.git#master",
"istanbul": "~0.4.5",
"jsdoc": "~3.3.0-alpha9",
"mocha": "~5.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"repository": {
"type": "git",
"url": "http://github.com/etops/node-ottoman.git"
},
"version": "1.0.12"
}