-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
123 lines (123 loc) · 3.07 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "evaengine",
"version": "0.0.0-development",
"description": "EvaEngine for Node.js, a micro service development engine",
"license": "MIT",
"package-lock": false,
"repository": {
"type": "git",
"url": "https://github.com/EvaEngine/EvaEngine.js.git"
},
"scripts": {
"prestart": "npm run build",
"prepublish": "rm -rf ./lib && npm run build",
"ava": "cross-env LOG_LEVEL=error NODE_ENV=test ava --verbose --serial",
"test": "nyc -a --reporter=lcov --reporter=text --reporter=html npm run ava",
"lint": "eslint src/* --ext .js",
"build": "./node_modules/.bin/babel -D -s -d lib/ src/",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"es7",
"es2015",
"engine",
"micro service",
"orm"
],
"main": "index.js",
"bin": {
"engine": "./bin/engine",
"engine-babel": "./bin/engine-babel"
},
"pre-commit": [
"lint"
],
"author": "AlloVince",
"ava": {
"files": [
"test/**/*.js",
"!test/bootstrap.js",
"!test/_*/**/*.js",
"!test/swagger/_*/**/*.js"
],
"source": [
"src/**/*.js"
],
"failFast": false,
"tap": false,
"require": [
"babel-core/register",
"babel-polyfill",
"./test/bootstrap"
],
"babel": "inherit"
},
"nyc": {
"require": [],
"include": [
"src/**/*.js"
],
"exclude": [
"src/config/index.js"
]
},
"dependencies": {
"acorn": "^5.5.3",
"app-root-path": "^2.0.1",
"babel-polyfill": "^6.23.0",
"cloud-config-client": "^1.1.0",
"connect-redis": "^3.3.3",
"constitute": "^1.6.2",
"continuation-local-storage": "^3.2.1",
"doctrine": "^2.1.0",
"express": "^4.16.3",
"express-session": "^1.15.3",
"glob": "^7.1.2",
"ioredis": "^3.1.1",
"joi": "^12.0.0",
"js-yaml": "^3.11.0",
"jwt-simple": "^0.5.1",
"later": "^1.2.0",
"lodash": "^4.17.5",
"mkdirp": "^0.5.1",
"moment": "^2.22.0",
"moment-timezone": "^0.5.13",
"morgan": "^1.8.2",
"mysql": "^2.13.0",
"node-mocks-http": "^1.6.6",
"on-headers": "^1.0.1",
"pug": "^2.0.3",
"request": "^2.85.0",
"request-promise-native": "^1.0.4",
"sequelize": "^3.31.0",
"swagger-ui-dist": "^3.13.3",
"winston": "^2.4.1",
"yargs": "^11.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.7.0",
"is-type-of": "^1.0.0",
"nock": "^9.2.3",
"nyc": "^11.6.0",
"pre-commit": "^1.2.2",
"semantic-release": "^15.1.5",
"travis-deploy-once": "^4.4.1"
}
}