-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.96 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.96 KB
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
{
"name": "loopback-component-changestreamer",
"version": "0.0.2",
"description": "Stream model changes by SSE",
"main": "dist/component.js",
"directories": {
"test": "test"
},
"scripts": {
"prepublish": "gulp",
"pretest": "gulp",
"e2e": "./node_modules/.bin/mocha --timeout 30000 e2e/**/*test.js",
"e2e:debug": "npm run test -- --debug-brk",
"test": "npm run e2e"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/6riversystems/loopback-component-changestreamer.git"
},
"keywords": [
"loopback",
"sse",
"streamer"
],
"author": "Nick Chistyakove",
"license": "ISC",
"bugs": {
"url": "https://github.com/6riversystems/loopback-component-changestreamer/issues"
},
"homepage": "https://github.com/6riversystems/loopback-component-changestreamer#readme",
"devDependencies": {
"@types/ramda": "^0.25.16",
"@types/node": "^9.4.0",
"chai": "^3.5.0",
"eslint": "^4.14.0",
"eslint-config-6river": "^1.0.3",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-typescript": "^0.8.1",
"gulp": "^3.9.1",
"gulp-typescript": "^3.1.2",
"loopback": "^2.36.0",
"loopback-boot": "^2.23.0",
"mocha": "^3.1.2",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"supertest": "^2.0.1",
"typescript": "^2.6.2",
"typescript-eslint-parser": "^11.0.0",
"uuid": "^2.0.3",
"cz-conventional-changelog": "^2.1.0",
"validate-commit-msg": "^2.14.0",
"husky": "^0.14.3"
},
"dependencies": {
"ramda": "^0.25.0"
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": "Follow <type>(<scope>): <subject> pattern, max 100 chars.",
"autoFix": false
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}