forked from Atlantis-Software/offshore
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "offshore",
"description": "An ORM for Node.js",
"version": "1.0.1",
"contributors": [
{
"name": "Alexandre Tiertant",
"github": "https://github.com/atiertant"
}
],
"dependencies": {
"async": "1.5.2",
"bluebird": "3.4.7",
"deep-diff": "0.3.4",
"lodash": "4.17.4",
"switchback": "2.0.2",
"prompt": "1.0.0",
"offshore-validator": "~0.1.0",
"offshore-criteria": "~0.1.0",
"offshore-schema": "~0.1.0"
},
"devDependencies": {
"codeclimate-test-reporter": "0.4.0",
"eslint": "3.11.1",
"espree": "3.3.2",
"istanbul": "0.4.5",
"should": "11.1.1",
"offshore-memory": "~0.1.0",
"offshore-adapter-tests": "Atlantis-Software/offshore-adapter-tests",
"mocha": "3.2.0"
},
"keywords": [
"mvc",
"orm",
"mysql",
"postgresql",
"redis",
"mongodb",
"active-record",
"offshore"
],
"repository": "git://github.com/Atlantis-Software/offshore.git",
"main": "./lib/offshore",
"scripts": {
"test": "make test",
"prepublish": "npm prune",
"browserify": "rm -rf .dist && mkdir .dist && browserify lib/offshore.js -s Offshore | uglifyjs > .dist/offshore.min.js",
"coverage": "make coverage",
"lint": "eslint lib --reset"
},
"engines": {
"node": ">=4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Atlantis-Software/offshore/issues/new"
}
}