-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "pouchable",
"version": "1.1.30",
"description": "PouchDB wrapped for TypeScript lovers",
"main": "./dist/src/index.js",
"scripts": {
"test": "tsc;node_modules/.bin/mocha \"./dist/tests/*.js\" ",
"cover": "tsc;istanbul cover node_modules/.bin/_mocha \"./dist/tests/*.js\"",
"report-cover": "tsc;node_modules/.bin/istanbul cover node_modules/.bin/_mocha \"./dist/tests/*.js\" && node_modules/.bin/istanbul-coveralls"
},
"author": "Roy Ganor <[email protected]> (http://ganoro.blogspot.com/)",
"license": "ISC",
"devDependencies": {
"@types/core-js": "^0.9.35",
"@types/lodash": "^4.14.54",
"@types/mocha": "^2.2.39",
"@types/pouchdb": "^5.4.28",
"istanbul": "^0.4.5",
"istanbul-coveralls": "^1.0.3",
"mocha": "^3.2.0",
"mocha-typescript": "^1.0.22",
"rxjs": "^5.2.0",
"ts-node": "^2.1.0",
"ts-promise": "^0.3.4",
"typescript": "^2.2.1",
"zone.js": "^0.7.7"
},
"dependencies": {
"lodash": "^4.17.4",
"pouchdb": "^7.1.1"
},
"typings": "./dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/sudzy-group/pouchable.git"
}
}