-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "persistanz",
"version": "0.9.1",
"description": "Object relational mapping (ORM) library with unique features.",
"main": "./lib/Persistanz.js",
"dependencies": {
"co": "^4.6.0",
"schemax": "^0.2.1"
},
"devDependencies": {
"chai": "^3.5.0",
"co-mocha": "^1.1.3",
"coveralls": "^3.1.1",
"mocha": "^9.2.2",
"mysql": "^2.11.1",
"mysql2": "^2.3.3",
"nyc": "^15.1.0",
"pg": "^6.0.1",
"sqlite3": "^5.0.0"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --reporter spec --timeout 5000 --no-exit",
"pure-test": "mocha --reporter spec --timeout 5000 --no-exit",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"Object Relational Mapping",
"ORM",
"SQL",
"MySQL",
"Postgres",
"Sqlite3"
],
"repository": {
"type": "git",
"url": "https://github.com/egemadra/persistanz.git"
},
"homepage": "http://persistanz.34bit.net/",
"bugs": {
"email": "egemadra@gmail.com"
},
"author": "Ege Madra <egemadra@gmail.com>",
"license": "MIT"
}