-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.16 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
{
"name": "rxjs-couchdb",
"version": "1.5.0",
"description": "Simple rsxj implementation for couchDB",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"build": "babel src -d dist",
"dev": "babel src --watch -d dist",
"test:watch": "npm test -- --watch",
"prepublish": "npm run build",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ponyesteves/rxjs-couchdb.git"
},
"keywords": [
"rxjs",
"couch",
"noSQL",
"simple"
],
"author": "@ponyesteves",
"license": "ISC",
"bugs": {
"url": "https://github.com/ponyesteves/rxjs-couchdb/issues"
},
"babel": {
"presets": [
"env",
"stage-3"
]
},
"homepage": "https://github.com/ponyesteves/rxjs-couchdb#readme",
"devDependencies": {
"@types/jest": "^20.0.7",
"@types/rx": "^4.1.1",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"jest": "^20.0.4",
"np": "^2.16.0"
},
"dependencies": {
"ramda": "^0.24.1",
"request": "^2.81.0",
"rxjs": "^5.4.3"
}
}