-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.4 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
112
113
114
115
{
"name": "@donkeyclip/motorcortex-tv",
"version": "0.3.0",
"description": "TV animations for MotorCortex",
"main": "dist/motorcortex-tv.cjs.js",
"module": "dist/motorcortex-tv.esm.js",
"browser": "dist/motorcortex-tv.umd.js",
"author": "Donkeyclip (donkeyclip.com) <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/donkeyclip/motorcortex-tv.git"
},
"license": "MIT",
"engines": {
"node": ">=12"
},
"scripts": {
"lint": "eslint -c .eslintrc src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"build": "npm run build:lib && npm run build:demo",
"build:lib": "rollup -c",
"start": "npm run build:lib && concurrently -c \"cyan.bold,magenta.bold\" \"npm:build:lib -- -w\" \"npm:start:demo\" ",
"start:demo": "webpack serve --config ./demo/webpack.config.js --mode=development --progress ",
"build:demo": "webpack --mode=production --config ./demo/webpack.config.js",
"test": "HERE GOES YOUR TEST TASK",
"test:prod": "npm run lint",
"commit": "git-cz",
"prebuild": "rimraf dist",
"prepare": "husky install"
},
"keywords": [
"motorcortex",
"tv",
"monitor",
"screen"
],
"lint-staged": {
"*.{json,md,yml,yaml,css}": [
"prettier --write"
],
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {
"@donkeyclip/motorcortex": ">= 8 < 10"
},
"devDependencies": {
"@babel/cli": "7.22.15",
"@babel/core": "7.22.15",
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-syntax-jsx": "7.22.5",
"@babel/plugin-transform-react-jsx": "7.22.15",
"@babel/preset-env": "7.22.15",
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@donkeyclip/motorcortex": "9.12.0",
"@donkeyclip/motorcortex-player": "2.10.11",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.1.0",
"@semantic-release/npm": "8.0.3",
"@size-limit/preset-big-lib": "6.0.4",
"babel-loader": "8.3.0",
"browserslist": "4.21.10",
"caniuse-lite": "1.0.30001528",
"commitizen": "4.3.0",
"concurrently": "6.5.1",
"core-js": "3.32.2",
"css-loader": "6.11.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "5.2.0",
"husky": "7.0.4",
"lint-staged": "11.2.6",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"rollup": "2.79.1",
"rollup-plugin-terser": "7.0.2",
"semantic-release": "18.0.1",
"size-limit": "6.0.4",
"webpack": "5.88.2",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.15.1"
}
}