-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "@thalesrc/hermes",
"version": "0.0.0",
"description": "Javascript messaging library",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.lib.json",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"lint": "tslint -p tsconfig.json && tslint -p tsconfig.spec.json",
"prepublishOnly": "npm version $PACKAGE_VERSION --no-git-tag-version && tsc -p ./tsconfig.lib.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thalesrc/hermes.git"
},
"keywords": [
"javascript",
"messaging",
"send",
"message",
"chrome",
"extension",
"extensions",
"nodejs",
"child",
"process",
"webworkers"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/thalesrc/hermes/issues"
},
"homepage": "https://github.com/thalesrc/hermes#readme",
"dependencies": {
"@thalesrc/js-utils": "^2.12.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/chrome": "^0.0.253",
"@types/jest": "^29.5.10",
"cpy-cli": "^5.0.0",
"jest": "^29.7.0",
"replace": "^1.2.2",
"rxjs-marbles": "^7.0.1",
"ts-jest": "^29.1.1",
"tslint": "^5.20.1",
"typescript": "^5.3.2"
},
"publishConfig": {
"access": "public"
}
}