-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 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
{
"name": "loopback-set-through-properties-mixin",
"version": "0.0.0-development",
"description": "A mixin to enable including Through model properties",
"main": "include-through.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --recursive ./test",
"posttest": "npm run lint",
"lint": "eslint ./*.js",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"chai": "^3.5.0",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.11.1",
"eslint-config-loopback": "^5.0.0",
"loopback": "^2.36.0",
"loopback-datasource-juggler": "^2.53.0",
"mocha": "^3.2.0",
"semantic-release": "^6.3.2",
"supertest": "^2.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/JonnyBGod/loopback-set-through-properties-mixin.git"
},
"keywords": [
"loopback",
"include",
"through",
"mixin"
],
"author": "João Ribeiro <jonnybgod@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JonnyBGod/loopback-set-through-properties-mixin/issues"
},
"homepage": "https://github.com/JonnyBGod/loopback-set-through-properties-mixin#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}