-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "entitizer.data",
"version": "0.1.1",
"description": "Entitizer data module",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"clean_test": "shx rm -rf test-js",
"clean_lib": "shx rm -rf lib",
"clean_types": "shx rm -rf types",
"build_test": "npm-run-all build_lib clean_test && tsc --project ./test --pretty",
"test_mocha": "mocha --opts test/default.opts test-js",
"test": "npm-run-all build_test test_mocha clean_test",
"build_lib": "npm-run-all clean_lib clean_types tsc",
"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": "git+https://github.com/entitizer/data-js.git"
},
"keywords": [
"entitizer",
"data",
"storage"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/entitizer/data-js/issues"
},
"homepage": "https://github.com/entitizer/data-js#readme",
"devDependencies": {
"@types/joi": "^10.4.1",
"@types/node": "^7.x.x",
"@types/redis": "^2.6.0",
"debug": "^2.6.8",
"mocha": "^3.2.0",
"node-cache": "^4.1.1",
"npm-run-all": "^4.0.2",
"shx": "^0.2.2",
"typescript": "^2.2.2"
},
"dependencies": {
"@reactivex/rxjs": "^5.4.3",
"entitizer.entities": "^0.1.0",
"joi": "^10.6.0",
"vogels": "^2.2.0"
}
}