-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "@teragrep/rlp_02",
"version": "v1.1.1-rc1",
"description": "Client Library that implements the RELP protocol",
"homepage": "http://teragrep.github.io/rlp_02/",
"repository": {
"type": "git",
"url": "git://github.com/teragrep/rlp_02.git"
},
"bugs": {
"url": "https://github.com/teragrep/rlp_02/issues"
},
"main": "./src/index.js",
"scripts": {
"test": "karma start --single-run ./src/test/js/karma.conf.js",
"karma-test": "jasmine",
"postpublish": "npm run publish-npm",
"publish-npm": "npm publish --access public --ignore-scripts --@teragrep:registry='https://registry.npmjs.org'"
},
"engines": {
"node": ">=12.5.0"
},
"files": [
"src/**/*.js"
],
"exports": {
".": "./src/index.js",
"./package.json": "./package.json"
},
"author": "Teragrep",
"license": "Apache-2.0",
"devDependencies": {
"async": "^3.2.1",
"dotenv": "^10.0.0",
"jasmine": "^3.99.0",
"jasmine-core": "^3.7.1",
"jasmine-node": "^1.16.0",
"karma": "^6.3.3",
"karma-jasmine": "^4.0.1",
"karma-requirejs": "^1.1.0",
"node": "^14.21.2",
"requirejs": "^2.3.6"
},
"keywords": [
"relp"
]
}