-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"name": "client-query",
"version": "0.1.3",
"description": "write mongodb queries in the client",
"main": "build/index.js",
"scripts": {
"dev": "watch 'npm run build' src",
"build": "babel src -d build",
"prepublish": "npm run build",
"release": "np"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mich5/client-query.git"
},
"keywords": [
"mongodb",
"query",
"aggregation",
"jamstack",
"serverless",
"clientside",
"cloud",
"functions"
],
"author": "Micho Ngoma (https://micho.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mich5/client-query/issues"
},
"homepage": "https://github.com/Mich5/client-query#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^8.2.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"np": "^7.2.0",
"watch": "^1.0.2"
},
"dependencies": {
"axios": "^0.21.1",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0"
}
}