-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.47 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
70
71
72
73
74
75
{
"name": "module-sdk",
"version": "1.0.1",
"description": "Module TypeScript SDK",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"keywords": [
"typescript",
"nft",
"sdk",
"api",
"module"
],
"scripts": {
"lint": "yarn run linter && yarn run format",
"test": "yarn run test:unit && yarn run test:integration",
"prepublishOnly": "yarn build && yarn lint && yarn run test",
"prebuild": "tsc --emitDeclarationOnly --declaration -p tsconfig.json",
"prepare": "husky install",
"build": "tsc && rollup --config rollup.config.js --bundleConfigAsCjs",
"linter": "eslint --fix . --ext .ts",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test:unit": "jest ./tests/unit/ --forceExit --detectOpenHandles",
"test:integration": "echo integration testing",
"test:nft": "jest ./tests/unit/nft.test.ts --forceExit --detectOpenHandles",
"test:eth": "jest ./tests/unit/eth.test.ts --forceExit --detectOpenHandles",
"test:central": "jest ./tests/unit/central.test.ts --forceExit --detectOpenHandles",
"test:metadata": "jest ./tests/unit/metadata.test.ts --forceExit --detectOpenHandles"
},
"homepage": "https://github.com/module/module-sdk-js",
"author": "Module <support@modulenft.xyz> (https://modulenft.xyz/)",
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/modulenft/module-sdk-js.git"
},
"bugs": "https://github.com/modulenft/module-sdk-js/issues",
"engines": {
"node": "<10.*"
},
"devDependencies": {
"@open-wc/building-rollup": "^2.0.2",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-json": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/jest": "^29.2.1",
"@types/node": "^18.7.23",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"deepmerge": "^4.2.2",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"license": "MIT",
"dependencies": {
"axios": "^1.1.3"
}
}