-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "github-db",
"version": "1.1.3",
"main": "dist/githubdb.js",
"description": "A Lightweight Cloud based JSON Database with a MongoDB like API for Node.",
"bugs": "https://github.com/usmakestwo/githubDB/issues",
"author": {
"name": "Gonzalo Vazquez",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/usmakestwo/githubDB"
},
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"githubDB",
"JSON",
"Database",
"file system",
"CRUD",
"lightweight",
"github"
],
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"chai": "^4.0.0",
"chai-as-promised": "^6.0.0",
"chai-spies": "^0.7.1",
"eslint": "^4.7.2",
"jshint-stylish": "^0.2.0",
"mocha": "^3.4.2",
"mocha-webpack": "^0.7.0",
"request": "^2.88.0",
"webpack": "^2.6.1",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"bluebird": "^3.5.3",
"chalk": "^2.4.1",
"github": "^9.2.0",
"merge": "^1.2.1",
"uuid": "^3.3.2"
},
"scripts": {
"compile": "node_modules/.bin/babel lib --out-dir dist",
"test": "node ./node_modules/mocha-webpack/bin/mocha-webpack --webpack-config webpack.config-test.js \"test/*.test.js\"",
"lint": "./node_modules/.bin/eslint --ext .js ."
}
}