forked from RequestNetwork/requestNetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.17 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
{
"name": "@requestnetwork/epk-decryption",
"version": "0.3.4",
"publishConfig": {
"access": "public"
},
"description": "Decryption provider using ethereum private keys.",
"keywords": [
"requestnetwork",
"decryption-provider"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/epk-decryption#readme",
"bugs": {
"url": "https://github.com/RequestNetwork/requestNetwork/issues"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"build": "run-s build:commonjs build:umd",
"build:commonjs": "tsc -b",
"build:umd": "webpack",
"clean": "shx rm -rf dist",
"lint": "tslint --project . && eslint \"src/**/*.ts\"",
"lint-staged": "lint-staged",
"test": "nyc mocha --require ts-node/register --require source-map-support/register \"test/**/*.ts\"",
"test:watch": "nyc mocha --watch --watch-extensions ts --require ts-node/register --require source-map-support/register \"test/**/*.ts\""
},
"dependencies": {
"@requestnetwork/multi-format": "0.2.2",
"@requestnetwork/types": "0.9.1",
"@requestnetwork/utils": "0.8.0"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.6",
"@typescript-eslint/parser": "1.2.0",
"amd-loader": "0.0.8",
"awesome-typescript-loader": "5.2.1",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"duplicate-package-checker-webpack-plugin": "3.0.0",
"eslint": "5.13.0",
"eslint-plugin-spellcheck": "0.0.11",
"eslint-plugin-typescript": "0.14.0",
"lint-staged": "8.1.3",
"mocha": "5.2.0",
"npm-run-all": "4.1.5",
"nyc": "13.2.0",
"prettier": "1.16.4",
"shx": "0.3.2",
"source-map-support": "0.5.13",
"terser-webpack-plugin": "1.3.0",
"ts-node": "8.5.2",
"tslint": "5.12.1",
"typescript": "3.7.2",
"webpack": "4.38.0",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "3.3.10"
}
}