@niftykit/redeemable 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ /**
2
+ * [js-sha3]{@link https://github.com/emn178/js-sha3}
3
+ *
4
+ * @version 0.8.0
5
+ * @author Chen, Yi-Cyuan [emn178@gmail.com]
6
+ * @copyright Chen, Yi-Cyuan 2015-2018
7
+ * @license MIT
8
+ */
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@niftykit/redeemable",
3
+ "version": "0.0.1",
4
+ "description": "NiftyKit Redeemable SDK",
5
+ "main": "dist/cjs/index.js",
6
+ "module": "dist/esm/index.js",
7
+ "umd:main": "dist/umd/index.js",
8
+ "types": "dist/types/index.d.js",
9
+ "scripts": {
10
+ "prepublishOnly": "pinst --disable",
11
+ "postpublish": "pinst --enable",
12
+ "build": "yarn run build:cjs && yarn run build:esm && yarn run build:umd && yarn run build:types",
13
+ "build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
14
+ "build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
15
+ "build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
16
+ "build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
17
+ "clean": "node tools/cleanup",
18
+ "package": "yarn run build && yarn pack",
19
+ "test": "jest --no-cache --runInBand",
20
+ "test:cov": "jest --coverage --no-cache --runInBand",
21
+ "addscope": "node tools/packagejson name @niftykit/redeemable"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "keywords": [
30
+ "NiftyKit",
31
+ "sdk",
32
+ "redeemable",
33
+ "web3",
34
+ "ethers"
35
+ ],
36
+ "author": "NiftyKit <hello@niftykit.com>",
37
+ "license": "MIT",
38
+ "homepage": "https://github.com/niftykit-inc/niftykit-sdk",
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git@github.com:niftykit-inc/niftykit-sdk.git",
42
+ "directory": "packages/redeemable"
43
+ },
44
+ "bugs": {
45
+ "url": "https://github.com/niftykit-inc/niftykit-sdk/issues"
46
+ },
47
+ "dependencies": {
48
+ "@niftykit/contracts": "*",
49
+ "ethers": "^5.6.6"
50
+ },
51
+ "devDependencies": {}
52
+ }