-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 931 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 931 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
{
"name": "@fieldfare/node",
"version": "1.0.0",
"description": "Initialization code to run the Fieldfare framework on Node.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "yalc retreat --all",
"postpack": "yalc restore --all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moduhub/fieldfare-node.git"
},
"keywords": [
"fieldfare",
"node",
"manager",
"library"
],
"exports": {
".": "./src/index.js"
},
"peerDependencies": {
"@fieldfare/core": "^1.0.0"
},
"author": "Adan Kvitschal",
"license": "ISC",
"bugs": {
"url": "https://github.com/moduhub/fieldfare-node/issues"
},
"homepage": "https://github.com/moduhub/fieldfare-node#readme",
"dependencies": {
"@fieldfare/core": "^1.1.0",
"level": "^8.0.0",
"websocket": "^1.0.34"
},
"files": [
"src"
]
}