-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "vobi-core",
"version": "1.0.12",
"description": "Vobi Core",
"main": "./build/index.js",
"scripts": {
"build": "npm run lint && babel ./src -d ./build",
"lint": "eslint . --quiet",
"lint-fix": "eslint ./src",
"test": "nyc mocha --require babel-core/register",
"lcov": "http-server ./coverage/lcov-report/",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"author": "",
"license": "ISC",
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"repository": {
"type": "git",
"url": "https://github.com/vobi-io/vobi-core"
},
"peerDependencies": {
"lodash": "^4.15.0",
"graphql-compose-mongoose": "4.0.0",
"ramda": "0.25.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-import-graphql": "^2.7.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.1",
"nyc": "^14.1.1"
},
"dependencies": {
"axios": "^0.19.0",
"bcrypt-nodejs": "0.0.3",
"crypto": "^1.0.1",
"debug": "^4.1.1",
"glob": "^7.1.4",
"mime": "^2.4.4",
"multer": "^1.4.2",
"randomstring": "^1.1.5"
}
}