-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
87 lines (87 loc) · 2.41 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "loopback-component-access-groups",
"description": "Access controls for Loopback.",
"version": "0.0.0-development",
"author": {
"name": "Tom Kirkpatrick @mrfelton"
},
"repository": {
"type": "git",
"url": "https://github.com/fullcube/loopback-component-access-groups.git"
},
"keywords": [
"loopback",
"strongloop",
"access"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fullcube/loopback-component-access-groups/issues"
},
"homepage": "https://github.com/fullcube/loopback-component-access-groups",
"directories": {
"lib": "lib",
"test": "test"
},
"main": "./lib/index.js",
"scripts": {
"lint": "eslint './{lib,test}/**/*.js'",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text --reporter=text-summary mocha test/*test.js",
"pretest": "npm run lint",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"simple-app": "DEBUG=loopback:component:access* node test/fixtures/simple-app/server/server.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"bluebird": "^3.5.0",
"debug": "^2.6.8",
"lodash": "^4.17.4"
},
"peerDependencies": {
"loopback-context": "^3.1.0",
"cls-hooked": "^4.1.5"
},
"devDependencies": {
"@bubltechnology/customizable-commit-analyzer": "^1.0.2-0",
"chai": "^4.0.2",
"chai-tbd": "0.1.0",
"condition-circle": "^1.5.0",
"coveralls": "latest",
"dirty-chai": "2.0.1",
"eslint": "^4.1.0",
"eslint-config-fullcube": "^3.0.0",
"loopback": "^3.4.0",
"loopback-boot": "^2.24.0",
"loopback-component-explorer": "2.3.0",
"loopback-context": "^3.1.0",
"cls-hooked": "^4.1.5",
"loopback-component-fixtures": "^1.1.0",
"mocha": "^3.4.1",
"mocha-sinon": "latest",
"nyc": "latest",
"sinon": "latest",
"sinon-chai": "latest",
"strong-error-handler": "^2.1.0",
"supertest": "^3.0.0",
"semantic-release": "^6.3.6"
},
"config": {
"commitTypeMap": {
"feat": "minor",
"fix": "patch",
"docs": "patch",
"style": "patch",
"refactor": "patch",
"perf": "patch",
"test": "patch",
"build": "patch",
"ci": "patch",
"chore": "patch",
"revert": "patch"
}
},
"release": {
"verifyConditions": "condition-circle",
"analyzeCommits": "@bubltechnology/customizable-commit-analyzer"
}
}