forked from Joystream/pioneer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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": "@joystream/metadata-protobuf",
"version": "1.0.0",
"description": "Joystream Metadata Protobuf Library ",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./utils": "./lib/utils.js",
"./licenses": "./lib/licenses.js",
"./consts": "./lib/consts.js"
},
"typesVersions": {
"*": {
"lib/index.d.ts": ["lib/index.d.ts"],
"*": [ "lib/*" ]
}
},
"repository": "https://github.com/joystream/joystream",
"author": "Joystream Contributors",
"license": "MIT",
"private": false,
"scripts": {
"build": "yarn compile && tsc",
"compile": "yarn ts-node ./scripts/compile.ts",
"generate-doc": "./generate-md-doc.sh",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --inline-diffs -r ts-node/register 'test/**/*.ts'",
"lint": "eslint ./src --ext .ts",
"checks": "tsc --noEmit --pretty && prettier ./ --check && yarn lint",
"format": "prettier ./ --write"
},
"files": [
"lib/**/*",
"doc/**",
"proto/**",
"compiled/**/*",
"README.md"
],
"dependencies": {
"google-protobuf": "^3.14.0",
"long": "^4.0.0",
"@types/long": "^4.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"eslint": "^7.6.0",
"mocha": "^8.2.1",
"prettier": "2.0.2",
"ts-node": "^8.8.1",
"typescript": "^4.3.5",
"protobufjs": "^6.11.2"
}
}