-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "@nodefactory/filecoin-address",
"version": "1.0.1",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
],
"description": "Typescript library for generating filecoin address from keys",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"init": "mkdir dist",
"clean": "rm -rf dist",
"prebuild": "yarn run clean && yarn run init",
"build": "tsc --project tsconfig.build.json --sourceMap --outDir dist --declaration",
"lint:fix": "eslint --fix --ext .ts src/",
"lint": "eslint --ext .ts src/",
"pretest": "yarn run lint",
"test": "mocha -r ts-node/register \"test/**/*.test.ts\"",
"prepare": "yarn run build"
},
"author": "Mak Muftic <[email protected]>",
"contributors": [
"Mak Muftic <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NodeFactoryIo/filecoin-address"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/elliptic": "^6.4.12",
"@types/expect": "^24.3.0",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"mocha": "^6.2.3",
"sinon": "^8.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
},
"dependencies": {
"@openworklabs/filecoin-address": "^0.0.4",
"blakejs": "^1.1.0",
"elliptic": "^6.5.2"
}
}