forked from balderdashy/waterline
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "offshore",
"description": "An ORM for Node.js",
"version": "1.0.4",
"contributors": [
{
"name": "Alexandre Tiertant",
"github": "https://github.com/atiertant"
}
],
"dependencies": {
"async": "1.5.2",
"bluebird": "3.5.1",
"deep-diff": "1.0.1",
"lodash": "4.17.10",
"switchback": "2.0.2",
"prompt": "1.0.0",
"offshore-validator": "~0.1.0",
"offshore-criteria": "~0.1.0",
"offshore-schema": "~0.1.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "5.0.1",
"espree": "4.0.0",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"offshore-adapter-tests": "~1.0.0",
"offshore-memory": "~0.1.0",
"should": "13.2.1"
},
"keywords": [
"mvc",
"orm",
"mysql",
"postgresql",
"redis",
"mongodb",
"active-record",
"offshore"
],
"repository": "git://github.com/Atlantis-Software/offshore.git",
"main": "./lib/offshore",
"scripts": {
"test": "node ./test/runner.js",
"cover": "istanbul cover ./test/runner.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"prepublish": "npm prune",
"browserify": "rm -rf .dist && mkdir .dist && browserify lib/offshore.js -s Offshore | uglifyjs > .dist/offshore.min.js",
"lint": "eslint lib --reset"
},
"engines": {
"node": ">=4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Atlantis-Software/offshore/issues/new"
}
}