-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "sql-repository",
"version": "0.1.2",
"description": "A simple Knex based implementation of the repository pattern for Node.js",
"main": "index.js",
"scripts": {
"build": "rimraf ./lib && babel src --out-dir lib --copy-files",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zer0tonin/sql-repository.git"
},
"keywords": [
"database",
"repository",
"sql",
"pg",
"mysql"
],
"author": "Antoine Girard <[email protected]> (zer0tonin.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zer0tonin/sql-repository/issues"
},
"homepage": "https://github.com/zer0tonin/sql-repository#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.2.1",
"rimraf": "^2.6.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0"
},
"peerDependencies": {
"knex": "^0.13.0"
}
}