-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 2.04 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
{
"name": "@muxy/extensions-js",
"author": "Muxy, Inc.",
"version": "2.5.0-20221109.1",
"license": "ISC",
"repository": "https://github.com/muxy/extensions-js",
"description": "Provides easy access to Muxy's powerful backend architecture for Twitch extensions.",
"main": "dist/medkit.umd.js",
"module": "dist/medkit.esm.js",
"scripts": {
"build": "tsc --module commonjs --skipLibCheck && rollup -c rollup.config.ts",
"dev": "rollup -c rollup.config.ts -w",
"lint": "npx eslint 'src/**/*.ts' '__tests__/**/*.ts'",
"prebuild": "rimraf dist",
"prepack": "npm run build",
"report-coverage": "coveralls < ./coverage/lcov.info",
"test": "TZ=UTC npx jest",
"test:watch": "npx jest --watch",
"test:ci": "npm run lint && npm run test -- --ci --coverage --no-cache --reporters='default' --reporters='./tools/ga-jest-reporter'"
},
"dependencies": {
"pako": "^2.1.0",
"pusher-js": "^7.4.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"browser-resolve": "^2.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom-global": "^4.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prompt": "^1.3.0",
"regenerator-runtime": "^0.13.10",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,__tests__}/**/*.ts": [
"npx eslint 'src/**/*.ts' '__tests__/**/*.ts' --fix",
"prettier --config ./.prettierrc.js --write",
"git add"
]
}
}