forked from mediasuitenz/loopback-mixin-whitelist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "loopback-mixin-whitelist",
"description": "Whitelist which remote methods are automatically exposed through the api via a whitelist on the model.json definition file",
"version": "1.0.0",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mediasuitenz/loopback-mixin-whitelist.git"
},
"bugs": {
"url": "https://github.com/mediasuitenz/loopback-mixin-whitelist/issues"
},
"homepage": "https://github.com/mediasuitenz/loopback-mixin-whitelist",
"author": {
"name": "Richard Walker",
"email": "digitalsadhu@gmail.com",
"url": "https://mediasuite.co.nz"
},
"engines": {
"node": ">=4.4.6"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"pretest": "npm run lint",
"test:ci": "mocha --ui mocha-given -R spec test",
"test:dev": "testem .",
"test": "npm run test:ci",
"prepublish": "npm test && npm prune",
"preversion:patch": "npm run test",
"version:patch": "xyz -i patch",
"preversion:minor": "npm run test",
"version:minor": "xyz -i minor",
"preversion:major": "npm run test",
"version:major": "xyz -i major"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"keywords": [
"loopback",
"mixin",
"whitelist"
],
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3",
"mocha-given": "^0.1.3",
"snazzy": "^4.0.0",
"standard": "^7.1.2",
"testem": "^1.9.1",
"xyz": "^0.5.0"
},
"peerDependencies": {}
}