forked from clarkbw/loopback-ds-timestamp-mixin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 899 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 899 Bytes
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
{
"name": "loopback-ds-timestamp-mixin",
"version": "3.0.1",
"description": "A mixin to automatically generate created and updated Date attributes for loopback Models",
"main": "index.js",
"scripts": {
"pretest": "jscs *.js && jshint *.js",
"test": "nyc tap ./test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"outdated": "npm outdated --depth=0"
},
"keywords": [
"loopback",
"strongloop"
],
"author": "Bryan Clark",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/clarkbw/loopback-ds-timestamp-mixin.git"
},
"dependencies": {
"debug": "2.x"
},
"peerDependencies": {
"loopback-datasource-juggler": ">=2.23.0"
},
"devDependencies": {
"coveralls": "^2.11.2",
"jscs": "^1.13.1",
"jshint": "^2.8.0",
"loopback": "2.x",
"nyc": "^2.2.1",
"tap": "^1.2.0"
}
}