-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "firenze-adapter-mysql",
"version": "0.4.0",
"description": "MySQL adapter for firenze.js ORM",
"main": "index.js",
"scripts": {
"babel": "babel src --out-dir lib",
"lint": "eslint index.js src test",
"test:babel": "babel node_modules/firenze/test --out-dir node_modules/firenze/_test",
"test:deps": "cd ./node_modules/firenze && npm install",
"mocha": "mocha --require ./test/setup.js --compilers js:babel-register node_modules/firenze/_test/cases/*.js",
"test": "run-scripts lint babel test:babel test:deps mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/fahad19/firenze-adapter-mysql.git"
},
"keywords": [
"firenze",
"firenze-adapter",
"firenze-plugin",
"orm",
"mysql",
"database",
"adapter"
],
"author": "Fahad Ibnay Heylaal",
"license": "MIT",
"bugs": {
"url": "https://github.com/fahad19/firenze-adapter-mysql/issues"
},
"homepage": "https://github.com/fahad19/firenze-adapter-mysql",
"dependencies": {
"knex": "~0.9.0",
"lodash": "~3.10.0",
"mysql": "~2.9.0"
},
"peerDependencies": {
"firenze": "^0.4.0"
},
"devDependencies": {
"babel": "~6.3.13",
"babel-cli": "~6.3.15",
"babel-eslint": "~5.0.0-beta4",
"babel-preset-es2015": "~6.3.13",
"babel-preset-stage-0": "~6.3.13",
"babel-register": "~6.3.13",
"eslint": "~1.10.3",
"firenze": "^0.4.0",
"mocha": "~2.3.4",
"run-scripts": "~0.4.0",
"should": "~8.0.0",
"should-promised": "~0.3.1"
}
}