-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "prg-identity-mongo",
"version": "0.3.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"directories": {
"test": "test"
},
"scripts": {
"doc": "node ./bin/makeApiDoc.js",
"test": "npm run test:lint && npm run test:coverage",
"test:coverage": "node ./node_modules/cross-env/bin/cross-env.js ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --opts ./mocha.opts ./test",
"test:coverage:threshold": "node ./node_modules/cross-env/bin/cross-env.js ./node_modules/.bin/istanbul check --branches 80 --functions 80 --statements 80 --lines 80 ./coverage/coverage.json",
"test:lint": "node ./node_modules/eslint/bin/eslint.js --ext .js src test *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pragonauts/prg-identity-mongo.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pragonauts/prg-identity-mongo/issues"
},
"homepage": "https://github.com/pragonauts/prg-identity-mongo#readme",
"dependencies": {
"mongotoolbox": "0.0.3"
},
"devDependencies": {
"cross-env": "^3.1.3",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-mocha": "^0.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsdoc": "^2.4.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.5.1",
"eslint-plugin-react": "^6.7.1",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^2.0.1",
"mocha": "^3.1.1",
"mocha-istanbul": "^0.3.0",
"mongodb": "^2.2.15",
"sinon": "^1.17.6"
},
"peerDependencies": {
"mongodb": "^2.2.15"
}
}