-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.57 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
{
"name": "ravel-mysql-provider",
"version": "1.0.0-rc.3",
"author": "Sean McIntyre <[email protected]>",
"description": "MySQL Provider for Ravel Rapid Application Development Framework",
"contributors": [
{
"name": "Sean McIntyre",
"email": "[email protected]"
}
],
"main": "lib/ravel-mysql-provider.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/raveljs/ravel-mysql-provider.git"
},
"scripts": {
"clean": "gulp clean",
"docs": "gulp docs",
"watch": "gulp watch",
"test": "cross-env NODE_ENV=test npm run lint && npm run jest",
"test-no-cov": "cross-env NODE_ENV=test npm run lint && npm run jest-no-cov",
"test-windows": "npm run test-no-cov",
"lint": "npm run lint:lib && npm run lint:jest",
"lint:lib": "eslint ./lib",
"lint:jest": "eslint ./jest",
"jest": "cross-env NODE_ENV=test node --trace-warnings node_modules/.bin/jest --runInBand --coverage --silent",
"jest-no-cov": "cross-env NODE_ENV=test jest --runInBand --silent",
"show-coverage": "gulp show-coverage",
"show-docs": "gulp show-docs"
},
"jest": {
"setupFiles": [
"./jest/setup.js"
],
"setupTestFrameworkScriptFile": "./jest/timeout.js",
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"collectCoverageFrom": [
"lib/*.js"
],
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
},
"dependencies": {
"mysql": "2.17.1"
},
"peerDependencies": {
"ravel": ">= 1.0.0-rc.1 < 1.0.0"
},
"devDependencies": {
"cross-env": "5.2.0",
"jest": "23.1.0",
"supertest": "3.0.0",
"eslint": "4.2.0",
"eslint-config-standard": "10.2.1",
"eslint-config-semistandard": "11.0.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-node": "5.1.0",
"eslint-plugin-standard": "3.0.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-jsdoc": "3.1.1",
"redis-mock": "0.17.1",
"ravel": "1.0.0-rc.12",
"upath": "1.0.0",
"codeclimate-test-reporter": "0.5.0",
"del": "3.0.0",
"gulp": "3.9.1",
"gulp-env": "0.4.0",
"gulp-eslint": "4.0.0",
"gulp-load-plugins": "1.5.0",
"gulp-open": "2.0.0",
"source-map-support": "0.4.15",
"gulp-babel": "6.1.2",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-register": "6.26.0"
}
}