-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "halva-spec-builder",
"version": "1.1.0",
"scripts": {
"test": "jest --detectOpenHandles",
"typecheck": "tsc --project ./tsconfig-typecheck.json",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"build": "./scripts/build.sh",
"prepublish": "npm run build"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"bin": {
"spec-builder": "./dist/cli.js"
},
"files": [
"dist/"
],
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {
"@polkadot/keyring": "^2.14.1",
"@polkadot/util": "^2.14.1",
"@polkadot/util-crypto": "^2.14.1",
"yargs": "^15.3.1"
}
}