-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "kusama-genesis-spec",
"version": "1.0.0",
"description": "Genesis generation and chain state verification tool for Kusama.",
"main": "index.js",
"scripts": {
"lint": "tsc --noEmit && eslint 'src/**/*.{ts,tsx}' --quiet",
"lint:fix": "tsc --noEmit && eslint 'src/**/*.{ts,tsx}' --quiet --fix",
"genesis": "ts-node src/index genesis",
"verify": "node index.js verify",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Kusama",
"Polkadot",
"Blockchain"
],
"author": "Web3 Foundation",
"license": "ISC",
"dependencies": {
"@polkadot/api": "^1.11.1",
"@polkadot/keyring": "^2.8.1",
"@polkadot/util": "^2.8.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"bignumber.js": "^9.0.0",
"commander": "^5.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.4",
"typescript": "^3.8.3",
"web3": "^1.2.6"
}
}