-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 842 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 842 Bytes
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
{
"name": "hypertopic",
"version": "3.6.1",
"description": "Client library for the Hypertopic protocol.",
"main": "lib/index.js",
"scripts": {
"test": "jest --verbose",
"prepublish": "babel -d lib/ src/"
},
"keywords": [
"hypertopic",
"react"
],
"author": "Aurélien Bénel",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Hypertopic/lib-node.git"
},
"dependencies": {
"@babel/core": "^7.16.0",
"json-loader": "^0.5.7",
"node-fetch": "^2.6.6",
"object-path": "^0.11.4"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"jest": "^27.4.3",
"rewire": "^6.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
]
}
}