-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.94 KB
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
{
"name": "js-data-documentdb",
"description": "DocumentDB adapter for js-data.",
"version": "1.0.0-rc.2",
"homepage": "https://github.com/js-data/js-data-documentdb",
"repository": {
"type": "git",
"url": "https://github.com/js-data/js-data-documentdb.git"
},
"author": "js-data-documentdb project authors",
"license": "MIT",
"main": "./dist/js-data-documentdb.js",
"typings": "./dist/js-data-documentdb.d.ts",
"files": [
"dist/",
"src/",
"AUTHORS",
"CONTRIBUTORS"
],
"keywords": [
"data",
"datastore",
"store",
"database",
"adapter",
"documentdb",
"azure"
],
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"sinon",
"assert",
"before",
"after",
"beforeEach",
"afterEach"
],
"ignore": [
"dist/",
"doc/"
]
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"lint": "repo-tools lint \"**/*.js\"",
"bundle": "rollup -c rollup.config.js -f cjs -o dist/js-data-documentdb.js -m dist/js-data-documentdb.js.map src/index.js && repo-tools write-version dist/js-data-documentdb.js",
"doc": "jsdoc -c conf.json src node_modules/js-data-adapter/src",
"watch": "watch \"npm run bundle\" src/",
"build": "npm run lint && npm run bundle",
"mocha": "mocha -t 20000 -R dot -r babel-core/register -r babel-polyfill mocha.start.js",
"cover": "nyc --require babel-core/register --require babel-polyfill --cache mocha -t 20000 -R dot mocha.start.js && nyc report --reporter=html",
"test": "npm run build && npm run cover",
"release": "npm test && npm run doc && repo-tools updates && repo-tools changelog && repo-tools authors"
},
"dependencies": {
"js-data-adapter": "~0.8.2",
"mout": "1.0.0"
},
"peerDependencies": {
"js-data": "^3.0.0-rc.4",
"documentdb": "1.x.x"
},
"devDependencies": {
"js-data-repo-tools": "0.5.6"
}
}