forked from fullcube/loopback-ds-readonly-mixin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "loopback-ds-readonly-mixin",
"description": "A mixin to enable loopback Model properties to be marked as readonly.",
"version": "1.0.1",
"main": "./lib/index.js",
"author": "Tom Kirkpatrick @mrfelton",
"contributors": [
"Bram Borggreve @beeman",
"Matteo Padovano @mrbatista"
],
"repository": {
"type": "git",
"url": "https://github.com/fullcube/loopback-ds-readonly-mixin.git"
},
"keywords": [
"loopback",
"strongloop",
"mixin"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fullcube/loopback-ds-readonly-mixin/issues"
},
"homepage": "https://github.com/fullcube/loopback-ds-readonly-mixin",
"files": [
"lib",
"test"
],
"scripts": {
"lint": "jscs lib && jshint lib",
"test": "nyc mocha -R spec --timeout 10000 test",
"test:watch": "npm run test -- -w",
"pretest": "npm run lint",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"outdated": "npm outdated --depth=0"
},
"dependencies": {
"debug": "2.x",
"depd": "^1.1.0"
},
"peerDependencies": {
"loopback-datasource-juggler": ">=2.18.1"
},
"devDependencies": {
"bluebird": "latest",
"chai": "latest",
"chai-datetime": "^1.4.0",
"coveralls": "^2.11.4",
"jscs": "latest",
"jshint": "latest",
"loopback": "^2.34.0",
"loopback-boot": "^2.8.0",
"loopback-component-explorer": "2.1.1",
"loopback-testing": "1.2.0",
"mocha": "latest",
"nyc": "latest"
}
}