-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 870 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 870 Bytes
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
{
"name": "@synapps/orm",
"description": "Offshore ORM integration middleware for Synapps",
"version": "1.0.0",
"author": "Alexandre Tiertant <a.tiertant@atlantis-software.net>",
"contributors": [],
"license": "MIT",
"main": "./index.js",
"repository": "https://github.com/Atlantis-Software/synapps-orm",
"homepage": "https://github.com/Atlantis-Software/synapps-orm",
"keywords": [],
"dependencies": {
"offshore": "~1.0.0"
},
"devDependencies": {
"@synapps/core": "~0.0.14",
"coveralls": "^3.0.0",
"eslint": "~3.11.1",
"istanbul": "0.4.5",
"mocha": "~5.0.0",
"nyc": "~11.4.1",
"offshore-memory": "~0.1.0"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "nyc mocha --timeout=10000 --exit",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./"
}
}