-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
57
58
59
60
61
62
63
64
65
{
"name": "belt",
"version": "0.0.0",
"description": "A linked data layer over PouchDB with built in schema validation.",
"main": "./lib/index.js",
"scripts": {
"test": "./node_modules/grunt-cli/bin/grunt test",
"coverage": "./node_modules/grunt-cli/bin/grunt coverage",
"travis-ci": "./node_modules/grunt-cli/bin/grunt --verbose ci"
},
"repository": {
"type": "git",
"url": "https://github.com/mattonfoot/belt"
},
"keywords": [
"db",
"couchdb",
"pouchdb",
"framework",
"linked-data"
],
"author": "Matt Smith <[email protected]> (http://about.me/mattonfoot)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattonfoot/belt/issues"
},
"homepage": "https://github.com/mattonfoot/belt",
"dependencies": {
"fast-json-patch": "^0.5.2",
"json-patch": "^0.5.0",
"jsonpatch": "^1.0.1",
"pouchdb": "~3.0.6",
"rsvp": "~3.0.17",
"uuid": "~2.0.1"
},
"devDependencies": {
"chai": "*",
"glob": "*",
"grunt": "*",
"grunt-benchmark": "*",
"grunt-blanket": "*",
"grunt-cli": "*",
"grunt-complexity": "*",
"grunt-contrib-clean": "*",
"grunt-contrib-copy": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-watch": "*",
"grunt-coveralls": "*",
"grunt-mocha-test": "*",
"load-grunt-tasks": "*",
"memdown": "*",
"mocha": "*",
"mocha-lcov-reporter": "*",
"travis-cov": "*"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=1.3.0"
},
"config": {
"travis-cov": {
"threshold": 70
}
}
}