forked from jouke/loopback-auditz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.64 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "loopback-auditz",
"version": "0.4.2",
"description": "Adds comprehensive audit trail functionality to Loopback by keeping track of who created/modified/deleted data and when they did it, and adds a revisions model compatible with Sofa/Revisionable for PHP (https://github.com/jarektkaczyk/revisionable)",
"main": "src/index.js",
"scripts": {
"preversion": "npm test",
"compile": "projectz compile && gulp babel",
"prepublish": "npm run compile",
"pretest": "eslint ./src/*.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",
"soft",
"delete",
"audit",
"trail",
"timestamp",
"revisions"
],
"author": "Jouke Visser ([email protected])",
"badges": {
"list": [
"travisci",
"npmversion",
"npmdownloads",
"coveralls",
"daviddm",
"daviddmdev"
],
"config": {}
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/jouke/loopback-auditz.git"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-assign",
"transform-es2015-modules-commonjs"
]
},
"peerDependencies": {
"loopback-component-remote-ctx": "^0.2.2"
},
"dependencies": {
"babel-runtime": "^6.3.13",
"debug": "2.x"
},
"devDependencies": {
"babel-core": "^6.1.21",
"babel-istanbul": "^0.5.8",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-register": "^6.18.0",
"coveralls": "latest",
"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",
"loopback-component-remote-ctx": "^0.2.2",
"loopback-datasource-juggler": ">=2.33.2",
"nyc": "latest",
"projectz": "^1.3.2",
"supertest": "^2.0.1",
"tap": "latest"
},
"maintainers": [],
"contributors": [
"Jouke Visser <[email protected]> (http://studio-mv.nl)",
"Samuel Gaus <[email protected]> (http://gaus.ie)",
"Dalibor Karlović <[email protected]> (https://github.com/dkarlovi)"
],
"bugs": {
"url": "https://github.com/jouke/loopback-auditz/issues"
}
}