-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "loopback-softdelete-mixin",
"version": "0.0.6",
"description": "A mixin to automatically generate created and updated Date attributes for loopback Models",
"main": "dist/index.js",
"scripts": {
"preversion": "npm test",
"pretest": "eslint ./src/*.js && gulp babel",
"test": "_mocha --compilers js:babel-core/register",
"watch": "gulp",
"outdated": "npm outdated --depth=0"
},
"keywords": [
"loopback",
"strongloop",
"mixin",
"soft",
"delete"
],
"author": "Sam Gaus",
"repository": {
"type": "git",
"url": "https://github.com/gausie/loopback-softdelete-mixin.git"
},
"dependencies": {
"babel-runtime": "^6.3.13",
"debug": "2.x"
},
"peerDependencies": {
"loopback-datasource-juggler": ">=2.33.2"
},
"devDependencies": {
"babel-core": "^6.1.21",
"babel-istanbul": "^0.5.8",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"chai": "^3.4.1",
"eslint": "^1.9.0",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-react": "^3.9.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.0",
"gulp-sourcemaps": "^1.6.0",
"loopback": "2.x",
"loopback-boot": "2.x",
"mocha": "^2.3.4"
}
}