-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.74 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
{
"name": "prg-identity",
"version": "0.7.3",
"description": "Library for user authentication and authorization",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=6.0.0"
},
"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+ssh://git@github.com/pragonauts/prg-identity.git"
},
"keywords": [
"identity",
"authorization",
"authentication"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pragonauts/prg-identity/issues"
},
"homepage": "https://github.com/pragonauts/prg-identity#readme",
"optionalDependencies": {
"bcrypt": "^0.8.7"
},
"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",
"sinon": "^1.17.6",
"prg-identity-mongo": "https://github.com/pragonauts/prg-identity-mongo.git"
},
"dependencies": {}
}