-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 KB
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
{
"name": "fossa",
"version": "2.6.18",
"description": "Backbone powered model interface to MongoDB, thin wrapper around MongoJS",
"main": "index.js",
"scripts": {
"test": "mocha $(find test -name '*.test.js')",
"watch": "mocha --watch $(find test -name '*.test.js')",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- $(find test -name '*.test.js')",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- $(find test -name '*.test.js')"
},
"repository": {
"type": "git",
"url": "git@github.com:observing/fossa.git"
},
"keywords": [
"Fossa",
"thin",
"wrapper",
"backbone",
"model",
"interface",
"mongoose"
],
"author": "Martijn Swaagman",
"license": "MIT",
"bugs": {
"url": "https://github.com/observing/fossa/issues"
},
"dependencies": {
"async": "0.9.x",
"backbone": "1.1.x",
"eventemitter3": "1.2.x",
"extendible": "0.1.x",
"fusing": "1.0.x",
"mongodb": "1.4.x",
"predefine": "0.1.x"
},
"devDependencies": {
"chai": "1.10.x",
"istanbul": "0.3.x",
"mocha": "2.1.x",
"pre-commit": "0.0.x",
"sinon": "1.12.x",
"sinon-chai": "2.6.x"
}
}