This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
56 lines (56 loc) · 1.45 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-ds-timestamp-mixin",
"version": "3.4.1",
"description": "A mixin to automatically generate created and updated Date attributes for loopback Models",
"main": "index.js",
"scripts": {
"preversion": "npm test",
"pretest": "eslint ./es6/*.js && gulp babel",
"test": "nyc tap ./test/*.js",
"watch": "gulp",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"outdated": "npm outdated --depth=0"
},
"keywords": [
"loopback",
"strongloop",
"mixin",
"timestamp"
],
"author": "Bryan Clark",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/clarkbw/loopback-ds-timestamp-mixin.git"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-assign",
"transform-es2015-modules-commonjs"
]
},
"dependencies": {
"debug": "^2.6.1"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"coveralls": "^2.11.16",
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.0.1",
"gulp": "latest",
"gulp-babel": "^6.1.2",
"gulp-sourcemaps": "^2.4.1",
"loopback": "=3.4.0",
"loopback-boot": "=2.23.0",
"loopback-datasource-juggler": "=3.1.1",
"nyc": "^10.1.2",
"tap": "^10.2.1"
}
}