-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
104 lines (104 loc) · 2.94 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@merokudao/dapp-store-registry",
"version": "0.1.109",
"description": "The dApp Store registry for MerokuDAO dAapp Store",
"repository": {
"type": "git",
"url": "https://github.com/merokudao/dapp-store-registry"
},
"homepage": "https://github.com/merokudao/dapp-store-registry/blob/main/README.md",
"keywords": [
"meroku",
"dapp",
"store",
"registry"
],
"bugs": {
"url": "https://github.com/merokudao/dapp-store-registry/issues/new"
},
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
"module": "dist/module/index.js",
"author": "MerokuDAO Monks",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@stdlib/nlp-porter-stemmer": "^0.0.7",
"@types/json2csv": "^5.0.4",
"ajv": "^8.11.2",
"ajv-formats": "^2.1.1",
"axios": "^1.3.4",
"chai": "^4.3.7",
"cross-fetch": "^3.1.5",
"date-fns": "^2.29.3",
"debug": "^4.3.4",
"fs-extra": "^11.1.0",
"json2csv": "^6.0.0-alpha.2",
"lodash": "^4.17.21",
"minisearch": "^6.0.1",
"naughty-words": "^1.2.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.4",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.4",
"@types/js-search": "^1.4.0",
"@types/lodash": "^4.14.195",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.7",
"@types/sinon": "^10.0.13",
"@types/to-json-schema": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"dotenv": "^16.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^4.4.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"fetch-mock": "^9.11.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nock": "^13.2.9",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"open-cli": "^7.1.0",
"prettier": "^2.8.1",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typescript": "^4.9.4"
},
"files": [
"dist/**/*",
"!**/*.spec.*",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -rf ./dist",
"doc": "typedoc src/ --out docs",
"test:unit": "mocha --timeout 20000",
"test:prettier": "prettier 'src/**/*.ts' --list-different",
"test:lint": "eslint src --ext .ts",
"test": "run-s build test:*",
"fix": "run-s fix:*",
"fix:prettier": "prettier --write .",
"fix:lint": "eslint src --ext .ts --fix",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"build": "yarn clean && yarn build:main && yarn build:module",
"build2": "yarn clean && yarn build:esm && yarn build:cjs",
"prepack": "npm run build",
"prepare": "husky install"
}
}