forked from Joystream/joystream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.19 KB
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
{
"private": true,
"name": "storage-node",
"version": "1.0.0",
"engines": {
"node": ">=12.18.0",
"yarn": "^1.22.0"
},
"homepage": "https://github.com/Joystream/joystream/",
"bugs": {
"url": "https://github.com/Joystream/joystream/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Joystream/joystream.git"
},
"license": "GPL-3.0-only",
"contributors": [
{
"name": "Joystream",
"url": "https://joystream.org"
}
],
"keywords": [
"joystream",
"storage",
"node"
],
"os": [
"darwin",
"linux"
],
"scripts": {
"test": "wsrun --serial test",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"build": "yarn workspace @joystream/storage-cli run build",
"checks": "yarn lint && prettier . --check",
"format": "prettier . --write"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"eslint": "^5.16.0",
"eslint-config-esnext": "^4.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"typescript": "^3.9.6",
"wsrun": "^3.6.5"
}
}