-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.81 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
{
"name": "journaly",
"productName": "journaly",
"author": "Judah Holanda Correia Lima <[email protected]> (https://judahh.com)",
"version": "4.0.10",
"private": false,
"description": "A simple pub-sub library project",
"main": "dist/source/index.js",
"keywords": [
"message-broker",
"pubsub",
"pubsubplatform",
"publisher-subscriber-pattern",
"publisher-subscriber",
"observer-pattern",
"observer",
"nodejs",
"typescript",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Judahh/journaly.git"
},
"homepage": "https://github.com/Judahh/journaly#readme",
"license": "MIT",
"angular-cli": {},
"config": {
"jest": "--passWithNoTests --ci --verbose --forceExit --detectOpenHandles --colors",
"integration_config": "-i -c integration.config.json",
"unit_coverall": "tests/unit/coverage/lcov.info",
"integration_coverall": "tests/integration/coverage/lcov.info",
"path_dist": "dist",
"path_source": "src",
"path_server": "src/server"
},
"scripts": {
"postinstall": "",
"prepublish": "",
"build": "rm -rf dist/ && tsc",
"test": "jest $npm_package_config_jest",
"integration": "jest $npm_package_config_integration_config $npm_package_config_jest",
"prestart": "",
"tsc": "tsc",
"tsc:w": "tsc -w"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-filenames": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-import": "latest",
"jest": "latest",
"prettier": "latest",
"ts-jest": "latest",
"typescript": "latest"
}
}