-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.9 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
{
"name": "js-data-mongodb",
"description": "MongoDB adapter for js-data.",
"version": "1.0.0-rc.1",
"homepage": "https://github.com/js-data/js-data-mongodb",
"repository": {
"type": "git",
"url": "https://github.com/js-data/js-data-mongodb.git"
},
"author": "js-data-mongodb project authors",
"license": "MIT",
"main": "./dist/js-data-mongodb.js",
"typings": "./dist/js-data-mongodb.d.ts",
"files": [
"dist/",
"src/",
"AUTHORS",
"CONTRIBUTORS"
],
"keywords": [
"data",
"datastore",
"store",
"database",
"adapter",
"mongodb"
],
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"sinon",
"assert",
"before",
"after",
"beforeEach",
"afterEach"
],
"ignore": [
"dist/"
]
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"lint": "repo-tools lint \"**/*.js\"",
"bundle": "rollup -c rollup.config.js -f cjs -o dist/js-data-mongodb.js -m dist/js-data-mongodb.js.map src/index.js && repo-tools write-version dist/js-data-mongodb.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": {
"bson": ">=0.3.x",
"js-data": "^3.0.0-rc.4",
"mongodb": ">=1.3.x"
},
"devDependencies": {
"js-data-repo-tools": "0.5.6"
}
}