forked from fullcube/loopback-component-access-groups
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 3.02 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
88
89
90
91
92
93
94
95
96
{
"name": "loopback-component-access-groups",
"description": "Access controls for Loopback.",
"version": "0.1.1",
"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",
"files": [
"lib",
"test"
],
"directories": {
"lib": "lib",
"test": "test"
},
"main": "./lib/index.js",
"scripts": {
"lint": "eslint './{lib,test}/**/*.js'",
"simple-app": "node test/fixtures/simple-app/server/server.js",
"esformatter": "esformatter -i './{lib,test}/**/*.js'",
"pretest": "npm run esformatter ; npm run lint",
"coverage": "cat ./coverage/lcov.info | coveralls",
"quicktest": "NODE_ENV=test mocha test/*test.js",
"test": "NODE_ENV=test babel-node ./node_modules/.bin/isparta cover --report text --report lcov _mocha test/*test.js",
"test:watch": "NODE_ENV=test npm run test -- -w",
"outdated": "npm outdated --depth=0",
"todo": "./node_modules/.bin/leasot {lib,test}/*.js {lib,test}/**/*.js -r markdown > TODO.md || echo Refreshed TODO.md."
},
"dependencies": {
"bluebird": "3.2.1",
"chalk": "^1.1.3",
"debug": "2.2.0",
"lodash": "4.2.1",
"winston": "^2.2.0"
},
"peerDependencies": {
"loopback": ">=2.25.0"
},
"optionalDependencies": {
"loopback-component-explorer": "2.3.0"
},
"devDependencies": {
"babel-cli": "6.4.5",
"babel-preset-es2015": "latest",
"chai": "3.5.0",
"chai-tbd": "0.1.0",
"coveralls": "latest",
"dirty-chai": "1.2.2",
"esformatter": "0.9.0",
"esformatter-braces": "1.2.1",
"esformatter-collapse-objects": "0.5.1",
"esformatter-dot-notation": "1.3.1",
"esformatter-eol-last": "1.0.0",
"esformatter-literal-notation": "1.0.1",
"esformatter-quote-props": "1.0.2",
"esformatter-quotes": "1.0.3",
"esformatter-remove-trailing-commas": "1.0.1",
"esformatter-semicolons": "1.1.2",
"esformatter-use-strict": "2.0.2",
"eslint": "latest",
"eslint-config-fullcube": "https://github.com/fullcube/eslint-config-fullcube/tarball/master",
"eslint-config-strict": "https://github.com/fullcube/eslint-config-strict/tarball/f235fa38289b17e305a65be38ff9cfdf4c1eb31c",
"eslint-plugin-filenames": "https://github.com/fullcube/eslint-plugin-filenames/tarball/0123c4bb0034d71cc7a04c25fd63b3ac798052a1",
"isparta": "4.0.0",
"leasot": "3.1.2",
"loopback-boot": "2.16.0",
"loopback-component-fixtures": "0.0.6",
"mocha": "2.4.5",
"mocha-sinon": "latest",
"nyc": "latest",
"sinon": "latest",
"sinon-chai": "latest",
"supertest": "1.1.0",
"supertest-as-promised": "2.0.2",
"unquoted-property-validator": "1.0.0"
},
"babel": {
"presets": [
"es2015"
]
}
}