-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 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
76
77
78
79
80
81
82
83
84
85
{
"name": "@hawapi/js-sdk",
"packageManager": "[email protected]",
"description": "HawAPI SDK for JavaScript",
"version": "1.2.0",
"repository": "[email protected]:HawAPI/js-sdk.git",
"author": {
"name": "Lucas Josino",
"username": "LucJosin",
"email": "[email protected]",
"url": "https://lucasjosino.com"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/HawAPI/",
"bugs": {
"url": "https://github.com/HawAPI/js-sdk/issues",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"hawapi",
"hawapi-js-sdk",
"haw-api",
"stranger-things",
"stranger-things-api"
],
"types": "dist/types/index.d.ts",
"cdn": "dist/index.umd.min.js",
"main": "dist/index.min.js",
"unpkg": "dist/index.umd.min.js",
"module": "dist/index.esm.min.js",
"jsdelivr": "dist/index.umd.min.js",
"umd:main": "dist/index.umd.min.js",
"files": [
"dist/"
],
"exports": {
".": [
{
"types": "./dist/types/index.d.ts",
"import": "./dist/index.min.mjs",
"require": "./dist/index.min.cjs",
"default": "./dist/index.min.js"
},
"./dist/index.min.js"
]
},
"scripts": {
"test": "jest",
"test:cover": "rm -rf ./coverage/ && jest --coverage",
"lint": "eslint \"*/**/*.{ts,js}\"",
"lint:fix": "eslint \"*/**/*.{ts,js}\" --fix",
"clear": "rm -rf ./dist/",
"clear:docs": "rm -rf ./docs/",
"build": "yarn clear && rollup --config ./rollup.config.mjs && yarn build:types",
"build:doc": "typedoc src/index.ts",
"build:types": "yarn tsc -p tsconfig.bundle.json",
"publish": "yarn lint && yarn test && yarn build && npm publish --access public",
"publish:dry": "yarn lint && yarn test && yarn build",
"publish:dry-wot": "yarn lint && yarn build"
},
"devDependencies": {
"@mxssfd/typedoc-theme": "^1.1.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/eslint": "^8.44.7",
"@types/jest": "^29.5.8",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.8.1",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"ts-jest-resolver": "^2.0.1",
"typedoc": "^0.25.3",
"typescript": "^4.9.4"
}
}