-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 2.3 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
{
"name": "@arkecosystem/crypto-networks",
"version": "1.6.1",
"description": "Network configurations for the ARK Blockchain. Developed for TypeScript.",
"license": "MIT",
"contributors": [
"Brian Faust <[email protected]>"
],
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn clean && tsc",
"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}\""
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.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/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",
"@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-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.2",
"js-yaml": "^3.13.1",
"npm-check-updates": "^9.0.0",
"prettier": "^2.0.2",
"process-es6": "^0.11.6",
"rimraf": "^3.0.2",
"tmp": "^0.2.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"
}
}