-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 995 Bytes
/
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
{
"name": "another-mongoose-statemachine",
"version": "1.6.3",
"description": "State machine plugin for Mongoose ODM",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha --harmony test",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --harmony --report lcovonly -- --reporter spec --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/wcp1231/another-mongoose-statemachine"
},
"keywords": [
"mongoose",
"MongoDB",
"state-machine"
],
"author": "Chunpeng Wen <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/wcp1231/another-mongoose-statemachine/issues"
},
"homepage": "https://github.com/wcp1231/another-mongoose-statemachine",
"dependencies": {
"bluebird": "^2.10.2",
"lodash": "^2.4.1",
"mongoose": "^4.1.5"
},
"devDependencies": {
"chai": "^1.10.0",
"istanbul": "^0.3.5",
"mocha": "^2.1.0",
"sinon": "^1.14.1"
}
}