-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "entitizer.entities-storage",
"version": "0.4.0",
"description": "A nodejs module for storing entities",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"pretest": "npm run tsc",
"test": "mocha",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublish": "npm run tsc"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/entitizer/entities-storage-js.git"
},
"keywords": [
"entitizer",
"entities",
"entity",
"storage"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/entitizer/entities-storage-js/issues"
},
"homepage": "https://github.com/entitizer/entities-storage-js",
"dependencies": {
"bluebird": "^3.0.5",
"entitizer.models": "^0.1.1",
"joi": "5.x.x",
"lodash": "^3.10.1",
"vogels": "^2.2.0"
},
"devDependencies": {
"@types/node": "^7.x.x",
"debug": "^2.6.3",
"dotenv": "^1.2.0",
"mocha": "^3.2.0",
"typescript": "^2.2.2"
}
}