-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 849 Bytes
/
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
{
"name": "@jlaustill/unwind",
"version": "1.0.3",
"description": "MongoDB unwind for javascript.",
"main": "build/unwind.js",
"scripts": {
"build": "./node_modules/.bin/babel ./unwind.js --out-file build/unwind.js",
"test": "./node_modules/jest-cli/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlaustill/unwind.git"
},
"keywords": [
"unwind",
"mongodb",
"javascript"
],
"author": "Joshua Lawrence Austill",
"license": "MIT",
"bugs": {
"url": "https://github.com/jlaustill/unwind/issues"
},
"homepage": "https://github.com/jlaustill/unwind#readme",
"dependencies": {
"lodash": "4.17.11"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-1": "^6.24.1",
"jest-cli": "^23.6.0"
}
}