-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
32 lines (32 loc) · 1.05 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
{
"name": "mongoose-subscriptions",
"version": "2.8.4",
"description": "Processor agnostic payment subscription backend",
"main": "src/index.js",
"repository": "git@github.com:enhancv/mongoose-subscriptions.git",
"author": "Ivan Kerin <ikerin@gmail.com>",
"license": "MIT",
"dependencies": {
"mongoose-originals": "^2.0.1",
"shortid": "^2.2.8",
"xdate": "^0.8.2"
},
"scripts": {
"lint":
"node node_modules/.bin/prettier --list-different --print-width=100 --trailing-comma=es5 --tab-width=4 {src/*.js,src/**/*.js,test/*.js,test/**/*.js}",
"coverage":
"node node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- --recursive",
"test": "node node_modules/.bin/mocha --recursive"
},
"peerDepenencies": {
"mongoose": "4.10.8"
},
"devDependencies": {
"dotenv": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mongoose": "4.10.8",
"prettier": "^1.7.0",
"sinon": "^2.1.0"
}
}