This repository was archived by the owner on Nov 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.75 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.75 KB
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
{
"name": "ink-substrate-sdk",
"version": "0.1.0-alpha.1",
"description": "JavaScript SDK for Ink! substrate smart contracts.",
"author": "Blockcoders <engineering@blockcoders.io>",
"license": "MIT",
"readmeFilename": "README.md",
"main": "./lib/index.js",
"module": "./lib.esm/index.js",
"jsnext:main": "./lib.esnext/index.js",
"types": "./lib/index.d.ts",
"engineStrict": false,
"engines": {
"node": "^12.x || >=14.x || >=16.x"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "NODE_ENV=test echo \"no test specified\" && exit 0",
"test:cov": "NODE_ENV=test echo \"no test specified\" && exit 0",
"test:e2e": "NODE_ENV=test echo \"no test e2e specified\" && exit 0",
"clean": "rm -rf ./lib ./lib.esm ./lib.esnext",
"build": "tsc --build ./tsconfig.build.json",
"prebuild-all": "npm run clean",
"build-all": "npm run build-cjs && npm run build-esnext && npm run build-esm",
"build-cjs": "tsc -p tsconfig.build.json --outDir lib -t es3 -m commonjs",
"build-esnext": "tsc -p tsconfig.build.json --outDir lib.esnext -t es2015 -m commonjs",
"build-esm": "tsc -p tsconfig.build.json --outDir lib.esm -t es2015 -m es2015",
"lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepublishOnly": "npm run lint:ci && npm run test && npm run build-all"
},
"precommit": [
"lint:ci",
"test:cov"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blockcoders/ink-substrate-sdk.git"
},
"keywords": [
"substrate",
"polkadot",
"polkadot-js",
"kusama",
"blockchain",
"nft",
"token",
"erc20",
"trait-erc20",
"erc721",
"trait-erc721",
"erc1155",
"trait-erc1155",
"smart-contracts",
"dot",
"trait",
"ink!",
"ink",
"ink-contract",
"ink-event"
],
"bugs": {
"url": "https://github.com/blockcoders/ink-substrate-sdk/issues"
},
"homepage": "https://github.com/blockcoders/ink-substrate-sdk#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.7",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"peerDependencies": {}
}