-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.56 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.56 KB
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
{
"name": "tabel",
"version": "3.0.1",
"repository": "https://github.com/fractaltech/tabel",
"description": "A simple orm for PostgreSQL which works with simple javascript objects and arrays",
"main": "lib/Orm.js",
"homepage": "https://github.com/fractaltech/tabel",
"scripts": {
"prepublishOnly": "npm run build",
"clean": "rm -rf lib/",
"build": "npm run clean && babel src --out-dir lib/ && cp src/migration.stub lib/migration.stub",
"test": "npm run test.kredis && npm run test.orm && npm run test.collisions 1000 100 && npm run test.migrator default && npm run test.migrator custom && npm run test.migrate.cli",
"test.kredis": "babel-node test/kredis/main.js",
"test.orm": "babel-node test/orm/main.js",
"test.collisions": "babel-node test/collisions/main.js",
"test.migrator": "babel-node test/migrator/main.js",
"test.migrate.cli": "babel-node test/migrator/cli.js"
},
"author": "Kapil Verma <kapv89@gmail.com>",
"keywords": [
"object-relational-mapper",
"orm",
"postgresql",
"postgres",
"redis",
"mysql"
],
"license": "ISC",
"dependencies": {
"file-exists": "^2.0.0",
"isusableobject": "^0.1.2",
"knex": "^0.21.1",
"lodash": "^4.17.11",
"md5": "^2.2.1",
"redisdsl": "^1.0.3",
"uuid": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.13.1",
"faker": "^3.1.0",
"mysql": "^2.15.0",
"pg": "^8.0.3",
"rimraf": "^2.5.4"
}
}