forked from PhilippLgh/ethpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.85 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.85 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
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
{
"name": "ethpkg",
"version": "0.10.0",
"description": "Decentralized package management & package signing using crypto currency keys",
"main": "./dist/index.js",
"bin": {
"ethpkg": "./dist/bin/ethpkg.js"
},
"scripts": {
"test": "nyc mocha",
"test:lib": "nyc mocha PackageManager",
"test:dist": "nyc mocha PackageManager",
"lint": "tslint --project .",
"static-files": "copyfiles src/signer/eth/metamask/public/index.html -u 1 dist/",
"copy-build": "yarn static-files && tsc -p ./tsconfig.json",
"build": "tsc -p ./tsconfig.json",
"watch": "tsc -p ./tsconfig.json -w",
"build:web": "webpack --config webpack.config.js --display-error-details",
"build:web:watch": "webpack --config webpack.config.js --display-error-details --watch",
"start": "node ./dist/index.js",
"_publish": "npm pack && ethpkg sign --publish true"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/"
],
"exclude": [
"**/test/",
"**/*.spec.ts",
"src/bin",
"**/*.d.ts"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhilippLgh/ethereum-signed-packages.git"
},
"author": "Philipp Langhans <philipp@ethereum.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PhilippLgh/ethereum-signed-packages/issues"
},
"homepage": "https://github.com/PhilippLgh/ethereum-signed-packages#readme",
"devDependencies": {
"@babel/core": "^7.10.0",
"@types/chai": "^4.1.7",
"@types/cli-table": "^0.3.0",
"@types/es6-promise": "^3.3.0",
"@types/ethereumjs-util": "^5.2.0",
"@types/jsonwebtoken": "^8.3.0",
"@types/jszip": "^3.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/ora": "^3.0.0",
"@types/semver": "^6.2.0",
"@types/tar-stream": "^1.6.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"copyfiles": "^2.1.0",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"mocha": "^7.2.0",
"nock": "^11.7.0",
"nyc": "^15.0.1",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.16",
"ts-node": "^8.0.2",
"tslint": "^5.20.1",
"typescript": "^3.3.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@ianu/sdk": "^1.0.1",
"@octokit/rest": "^17.5.1",
"asn1.js": "^5.0.1",
"base64url": "^3.0.1",
"boxen": "^4.1.0",
"chalk": "^2.4.2",
"cli-table": "^0.3.1",
"clime": "^0.5.10",
"enquirer": "^2.3.0",
"ethereumjs-util": "^6.2.0",
"ethers": "^4.0.45",
"file-type": "^10.9.0",
"form-data": "^3.0.0",
"jsonwebtoken": "^8.4.0",
"jszip": "^3.1.5",
"ora": "^3.1.0",
"secp256k1": "^3.6.2",
"semver": "^6.3.0",
"tar-stream": "^2.0.1",
"uuid": "^7.0.1",
"xml2js": "^0.4.22"
}
}