-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
{
"name": "marighella-api",
"version": "1.0.0",
"description": "API to get information to Marighella 2.0",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marighella/api.git"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator"
]
},
"keywords": [
"marighella",
"cms",
"javascript",
"node"
],
"author": "Ratox <rodrigovieira18@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/marighella/api/issues"
},
"homepage": "https://github.com/marighella/api#readme",
"devDependencies": {
"jsonwebtoken": "^7.3.0",
"mocha": "^3.2.0",
"nock": "^9.0.6",
"supertest": "^3.0.0"
},
"dependencies": {
"babel": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"express": "^4.14.1",
"express-jwt": "^5.1.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"winston": "^2.3.1"
}
}