-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.53 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
{
"name": "@letsfullstack/loopback-soft-delete-mixin",
"version": "0.0.5",
"description": "It allows entities of any Model to be soft deleted by adding deletedAt and _isDeleted attributes.",
"main": "./src/index.js",
"scripts": {
"preversion": "npm test",
"compile": "gulp babel",
"prepublish": "npm run compile",
"pretest": "eslint ./src/*.js && gulp babel",
"test": "_mocha --compilers js:babel-core/register",
"watch": "gulp",
"outdated": "npm outdated --depth=0"
},
"keywords": [
"loopback",
"strongloop",
"mixin",
"softdelete"
],
"author": "Let's Go",
"license": "ISC",
"repository": "git://github.com/letsfullstack/loopback-soft-delete-mixin.git",
"dependencies": {
"babel-runtime": "^6.3.13",
"debug": "2.x"
},
"devDependencies": {
"@babel/register": "^7.10.1",
"babel": "^6.23.0",
"babel-core": "^6.1.21",
"babel-eslint": "^10.1.0",
"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.24.1",
"chai": "^3.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"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"
},
"peerDependencies": {
"loopback-datasource-juggler": ">=2.33.2"
}
}