-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.27 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": "yotils",
"version": "0.0.0",
"description": "Typescript utility functions.",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"browser": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"test": "jest",
"lint": "eslint .",
"format": "prettier --write --cache .",
"build:bundle": "rollup --config rollup.config.ts --configPlugin swc3",
"build:types": "tsc",
"build:types-rollup": "yarn api-extractor run && rimraf temp/types",
"build:docs": "yarn api-documenter markdown -i temp -o docs",
"build": "rimraf dist && run-s build:bundle build:types build:docs build:types-rollup"
},
"repository": {
"type": "git",
"url": "github:behzadam/yotils"
},
"homepage": "https://github.com/behzadam/yotils",
"keywords": [
"typescript",
"utils"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.19.24",
"@microsoft/api-extractor": "^7.33.6",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.0",
"@rollup/plugin-typescript": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@swc/core": "^1.3.22",
"@tsconfig/node12": "^1.0.11",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.2",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"rollup": "^3.7.3",
"rollup-plugin-swc3": "^0.8.0",
"semantic-release": "^20.1.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"private": false
}