-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 3.42 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
{
"name": "@arkecosystem/crypto-identities",
"version": "1.1.1",
"description": "Standalone version of identity interactions for the ARK Blockchain. Developed for TypeScript.",
"license": "MIT",
"contributors": [
"Brian Faust <brian@ark.io>"
],
"files": [
"dist"
],
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"browser": "dist/index.bundled.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.bundled.min.js",
"jsdelivr": "dist/index.bundled.min.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn clean && tsc && rollup -c",
"build:watch": "yarn clean && yarn compile -w",
"clean": "del dist",
"compile": "./node_modules/typescript/bin/tsc",
"prepublishOnly": "yarn build",
"format": "yarn run lint && yarn run prettier",
"lint": "eslint src/** --ext .ts --fix",
"prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./**/*.{ts,js,json,md}\"",
"test": "cross-env CORE_ENV=test jest --forceExit",
"test:coverage": "cross-env CORE_ENV=test jest --coverage --coveragePathIgnorePatterns='/(defaults.ts|index.ts)$' --runInBand --forceExit"
},
"dependencies": {
"bcrypto": "^5.3.0",
"bstring": "^0.3.9",
"fast-memoize": "^2.5.1",
"wif": "^2.0.6"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-babel": "^5.0.4",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@sindresorhus/tsconfig": "^0.7.0",
"@types/babel__core": "^7.1.6",
"@types/babel__preset-env": "^7.9.1",
"@types/eslint": "^7.2.3",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^26.0.14",
"@types/js-yaml": "^3.12.5",
"@types/node": "^13.9.5",
"@types/prettier": "^2.0.0",
"@types/rimraf": "^3.0.0",
"@types/tmp": "^0.2.0",
"@types/uuid": "^8.0.0",
"@types/wif": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"@wessberg/rollup-plugin-ts": "^1.2.26",
"@yarnpkg/pnpify": "^2.2.1",
"babel-loader": "^8.1.0",
"big-integer": "^1.6.48",
"browserify-aes": "^1.2.0",
"buffer-es6": "^4.9.3",
"builtin-modules": "^3.1.0",
"codecov": "^3.6.5",
"cpy-cli": "^3.1.0",
"cross-env": "^7.0.2",
"del-cli": "^3.0.0",
"depcheck": "^1.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.2",
"jest": "^26.0.0",
"jest-extended": "^0.11.5",
"js-yaml": "^3.13.1",
"npm-check-updates": "^9.0.0",
"prettier": "^2.0.2",
"process-es6": "^0.11.6",
"rimraf": "^3.0.2",
"rollup": "^2.18.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.0",
"tmp": "^0.2.0",
"ts-jest": "^26.0.0",
"typedoc": "^0.17.3",
"typescript": "^4.0.3",
"typescript-language-server": "^0.4.0",
"typesync": "^0.7.0",
"util": "^0.12.3",
"uuid": "^8.0.0"
}
}