This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
106 lines (106 loc) · 2.83 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "magnet",
"version": "2.7.2",
"description": "A modern approach for async microservices in node.js",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"build": "gulp build",
"lint": "eslint \"{src/**/*.js,test/**/*.js,*.js}\"",
"format": "prettier-eslint --write \"{src/**/*.js,test/**/*.js,*.js}\" && npm run format-imports && npm run lint",
"format-imports": "import-sort -o src",
"prepublish": "npm run build",
"preversion": "npm test",
"test": "npm run test:unit && npm run test:int",
"test:cov:int": "jest int --coverage --runInBand",
"test:cov:unit": "jest unit --coverage",
"test:cov": "jest --coverage --runInBand",
"test:cov:travis": "codecov",
"test:int": "jest int --runInBand",
"test:unit": "jest unit",
"test:watch": "jest --watch"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!<rootDir>/node_modules/",
"!<rootDir>/build/",
"!<rootDir>/coverage/",
"!<rootDir>/examples/"
],
"setupFiles": [
"<rootDir>/test/setup/node.js"
]
},
"contributors": [
"Ivan Santos <[email protected]>",
"Eduardo Lundgren <[email protected]>"
],
"license": "BSD-3-Clause",
"keywords": [
"api",
"express",
"magnet",
"rest"
],
"main": "build/index.js",
"bin": {
"magnet": "build/bin/magnet"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/wedeploy/magnet.git"
},
"dependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-runtime": "^6.26.0",
"body-parser": "^1.13.1",
"chokidar": "^1.6.1",
"cli-table": "^0.3.1",
"compression": "^1.6.2",
"cross-spawn": "^5.0.1",
"express": "^4.15.2",
"express-validator": "^3.1.2",
"fs-extra": "^2.0.0",
"glob": "^7.1.1",
"helmet": "^3.3.0",
"jsdom": "11.6.2",
"magnet-plugin-controller": "^0.0.4",
"magnet-plugin-function": "^0.0.8",
"metal": "^2.16.0",
"metal-assertions": "^2.16.0",
"minimist": "^1.2.0",
"morgan": "^1.9.1",
"multer": "^1.3.0",
"npmlog": "^4.0.2",
"pretty-error": "^2.1.0",
"progress-bar-webpack-plugin": "^1.10.0",
"resolve": "^1.3.3",
"webpack": "^3.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-register": "^6.23.0",
"codecov": "^1.0.1",
"del": "^3.0.0",
"eslint": "^3.17.1",
"eslint-config-liferay": "^1.0.1",
"eslint-loader": "^1.6.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"import-sort-cli": "^3.3.0",
"import-sort-parser-babylon": "^3.2.0",
"import-sort-style-eslint": "^3.0.0",
"jest": "^22.1.4",
"prettier-eslint-cli": "^4.4.0"
}
}