This repository has been archived by the owner on Aug 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.19 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
{
"name": "settee",
"version": "1.1.1",
"description": "Modern JavaScript ODM for Couchbase",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:npm": "rm -rf ./dist; tsc --project tsconfig.npm.json; cp ./src/typings.d.ts ./dist/typings.d.ts",
"dev": "tsc --watch",
"lint": "tslint --project ./tslint.json",
"pretest": "npm run lint",
"test": "ava --serial",
"test:watch": "ava -w --serial",
"test:cov": "nyc ava --serial",
"test:ci": "npm run build; nyc ava --serial --verbose",
"test:clean": "rm -rf ./.test",
"report": "nyc report --reporter=html; open .test/coverage/index.html",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LimeDeck/settee.git"
},
"keywords": [
"odm",
"couchbase",
"nosql",
"json",
"document"
],
"author": {
"name": "LimeDeck",
"email": "[email protected]",
"url": "https://limedeck.io"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/LimeDeck/settee/issues"
},
"homepage": "https://github.com/LimeDeck/settee#readme",
"typings": "dist/index",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "^0.0.29",
"@types/couchbase": "^2.1.30",
"@types/joi": "^10.0.1",
"@types/lodash": "^4.14.52",
"@types/sinon": "^1.16.35",
"@types/uuid": "^2.0.29",
"ava": "^0.18.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.16",
"eslint": "^3.16.0",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-plugin-ava": "^4.2.0",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^2.0.1",
"nyc": "^10.1.2",
"sinon": "^1.17.7",
"testdouble": "^1.11.1",
"tslint": "^4.4.2",
"typescript": "^2.2.1"
},
"dependencies": {
"couchbase": "^2.3.0",
"joi": "^10.2.2",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"uuid": "^3.0.1"
},
"ava": {
"files": "test/**/*.spec.js",
"source": [
".test/build/**/*.js"
]
},
"nyc": {
"temp-directory": ".test/output",
"report-dir": ".test/coverage"
}
}