forked from xolvio/mongodb-diff
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.21 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
{
"name": "mongodb-diff",
"version": "0.4.3",
"description": "Creates the MongoDB update query by diffing two objects. Credit: xolvio",
"files": [
"index.js",
"dist/lib/index.js"
],
"scripts": {
"prepublish": ". ./scripts/prepublish.sh",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "jasmine JASMINE_CONFIG_PATH=src/spec/support/jasmine.json",
"test": "npm run lint && npm run testonly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deanius/mongodb-diff.git"
},
"keywords": [],
"author": "Jonas Aschenbrenner",
"license": "MIT",
"bugs": {
"url": "https://github.com/deanius/mongodb-diff/issues"
},
"homepage": "https://github.com/deanius/mongodb-diff#readme",
"dependencies": {
"babel-runtime": "6.x.x",
"deep-diff": "^0.3.4",
"lodash": "^4.0.0"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-plugin-transform-runtime": "6.x.x",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-babel": "^3.0.0",
"jasmine": "^2.3.2"
}
}