-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
107 lines (107 loc) · 4 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "filecoin.js",
"version": "0.0.3-alpha",
"description": "A JavaScript/TypeScript client library for Filecoin.io's Lotus",
"main": "builds/dist/index.js",
"types": "builds/dist/index.d.ts",
"jsnext:main": "builds/dist-esm/index.js",
"module": "builds/dist-esm/index.js",
"browser": "builds/bundle/filecoin.js",
"files": [
"builds/",
"LICENSE-APACHE",
"LICENSE-MIT"
],
"repository": {
"type": "git",
"url": "https://github.com/filecoin-shipyard/filecoin.js"
},
"scripts": {
"prebuild": "rimraf builds/dist builds/dist-esm builds/dist-tests builds/examples",
"build": "tsc && tsc -m es6 --outDir builds/dist-esm",
"_build_tests": "npm run prebuild && tsc --project tsconfig.tests.json",
"prebundle": "rimraf builds/bundle",
"bundle": "webpack",
"bundle:analyze:report": "webpack --profile --json > stats.json",
"bundle:analyze": "npm run bundle:analyze:report && webpack-bundle-analyzer stats.json",
"_bundle-tests": "webpack --config webpack.tests.config.js",
"_test-browser-umd": "karma start --single-run --browsers HeadlessLittleLiar karma-umd.conf.js",
"_test-node": "mocha --no-colors --reporter ./tests/reporter ./builds/dist-tests/tests/src/test-*.js",
"test-browser-umd": "npm run _build_tests && npm run _bundle-tests && npm run _test-browser-umd",
"test": "npm run _build_tests && npm run _test-node",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"doc": "node build-tools/make-docs.js",
"serve:local": "npx serve --config serve.json --cors -l 1337",
"build:examples": "rimraf builds/examples && mkdirp builds/examples/ && cp -r examples/* builds/examples && cp -r builds/bundle/* builds/examples"
},
"author": "",
"license": "(Apache-2.0 AND MIT)",
"dependencies": {
"@ledgerhq/hw-transport-webusb": "^5.22.0",
"@nodefactory/filsnap-adapter": "^0.2.1",
"@nodefactory/filsnap-types": "^0.2.1",
"@zondax/filecoin-signing-tools": "github:Digital-MOB-Filecoin/filecoin-signing-tools-js",
"bignumber.js": "^9.0.0",
"bitcore-lib": "^8.22.2",
"bitcore-mnemonic": "^8.22.2",
"btoa-lite": "^1.0.0",
"events": "^3.2.0",
"isomorphic-ws": "^4.0.1",
"node-fetch": "^2.6.0",
"rpc-websockets": "^7.4.17",
"scrypt-async": "^2.0.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"websocket": "^1.0.31",
"ws": "^7.3.1"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.8.21",
"@microsoft/api-extractor": "^7.9.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/assert": "^1.4.1",
"@types/bitcore-lib": "^0.15.2",
"@types/btoa-lite": "^1.0.0",
"@types/dotenv": "^8.2.0",
"@types/ledgerhq__hw-transport-webusb": "^4.70.0",
"@types/mocha": "^8.0.2",
"@types/node": "^12.7.4",
"@types/node-fetch": "^2.5.7",
"@types/scrypt-async": "^1.3.1",
"@types/supertest": "^2.0.8",
"@types/websocket": "^1.0.1",
"@types/bn.js": "^4.11.6",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "3.9.0",
"@typescript-eslint/parser": "3.9.0",
"dotenv": "^8.2.0",
"eslint": "7.7.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-tsdoc": "^0.2.6",
"fs-extra": "^9.0.1",
"karma": "5.1.1",
"karma-chrome-launcher": "3.1.0",
"karma-mocha": "2.0.1",
"mkdirp": "^1.0.4",
"mocha": "^8.1.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"semantic-release": "^17.2.1",
"serve": "^11.3.2",
"supertest": "^4.0.2",
"ts-loader": "^8.0.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12"
}
}