This repository was archived by the owner on Oct 21, 2023. 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
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 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
{
"name": "elrond-data",
"version": "1.3.1",
"description": "Data for building with Elrond.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"author": "erdDEV team (https://erd.dev)",
"homepage": "https://erddevcode.github.io/utils/",
"license": "MIT",
"files": [
"dist",
"README.md",
"package.json",
"package-lock.json",
"CHANGELOG.md",
"LICENSE.md"
],
"repository": {
"type": "git",
"url": "https://github.com/erdDEVcode/utils.git"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"semantic-release": "^17.2.2",
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
},
"scripts": {
"build-data": "mkdir -p ./dist/data && cp ./data/* ./dist/data",
"build": "npm run build-data && tsc && tsc -p tsconfig-esm.json",
"dev": "npm run build-data && tsc --watch",
"build-docs": "rm -rf ./docs && typedoc",
"publish-docs": "npm run build-docs && gh-pages -d docs",
"prepublishOnly": "npm run build",
"postpublish": "npm run publish-docs",
"release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}