-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.19 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
105
106
107
108
109
110
111
{
"name": "monstercat.ts",
"version": "0.1.38",
"description": "The best Monstercat Connect API Wrapper",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"author": "Quantumlyy (https://Quantumlyy.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Quantumlyy/Monstercat.ts.git"
},
"bugs": {
"url": "https://github.com/Quantumlyy/Monstercat.ts/issues"
},
"homepage": "https://github.com/Quantumlyy/Monstercat.ts#readme",
"scripts": {
"build": "rollup -c rollup.config.ts",
"build:preparePackage": "npx cpx package.json src",
"prepublishOnly": "yarn build",
"sversion": "standard-version",
"test": "jest",
"test:coverage": "jest --coverage",
"documentation:generate": "typedoc --options ./typedoc.json --exclude \"src/test.ts\"",
"workflow:documentation:generate": "yarn run documentation:generate",
"workflow:documentation:clean:linux": "rm -rf src .eslintrc.json .eslintignore .editorconfig .npmignore yarn.lock .github.npmrc .gitignore node_modules",
"workflow:publish:github:replacename:linux": "sed -i '2s/.*/\"name\": \"@Quantumlyy/monstercat.ts\",/' package.json",
"workflow:publish:github:pipenpmrc:linux": "echo @Quantumlyy:registry=https://npm.pkg.github.com/ >> .npmrc"
},
"dependencies": {
"@favware/querystring": "^7.0.3",
"node-fetch": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@quantumly/eslint-config": "^1.1.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@types/node-fetch": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"husky": "4.3.8",
"jest": "^27.2.4",
"jest-circus": "^27.2.4",
"lint-staged": "^11.1.2",
"rollup": "^2.58.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typedoc": "0.22.4",
"typedoc-plugin-nojekyll": "^1.0.1",
"typescript": "^4.4.3"
},
"files": [
"dist",
"!dist/tsconfig.tsbuildinfo"
],
"keywords": [
"api",
"wrapper",
"typescript",
"ts",
"documented",
"monstercat",
"quantumlyy",
"Quantumlyy"
],
"engines": {
"node": ">=12",
"npm": ">=6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix --ext ts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"side-effects": false,
"sideEffects": false
}