-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 849 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 849 Bytes
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
{
"name": "mardwingram-api",
"version": "1.0.0",
"description": "MardwinGram REST API",
"scripts": {
"lint": "standard",
"test": "npm run lint && ava"
},
"standard": {
"parser": "babel-eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edwindeleon/MardwinGram-API.git"
},
"keywords": [
"Javascript",
"NodeJs",
"ava",
"lint",
"microservices"
],
"author": "Edwin De Leon",
"license": "MIT",
"bugs": {
"url": "https://github.com/edwindeleon/MardwinGram-API/issues"
},
"homepage": "https://github.com/edwindeleon/MardwinGram-API#readme",
"devDependencies": {
"ava": "^0.17.0",
"babel-eslint": "^7.1.1",
"standard": "^8.6.0",
"test-listen": "^1.0.0"
},
"dependencies": {
"request": "^2.79.0",
"request-promise": "^4.1.1"
}
}