-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.73 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
{
"name": "@donkeyclip/motorcortex-textfxs",
"version": "0.3.0",
"description": "textfxs plugin for MotorCortex",
"main": "dist/motorcortex-textfxs.cjs.js",
"module": "dist/motorcortex-textfxs.esm.js",
"browser": "dist/motorcortex-textfxs.umd.js",
"author": "Donkeyclip (donkeyclip.com) <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/donkeyclip/motorcortex-textfxs.git"
},
"license": "MIT",
"engines": {
"node": ">=12"
},
"scripts": {
"concurrently": "concurrently -c \"cyan.bold,magenta.bold\" --names \"JS,Styles\"",
"lint:js": "eslint -c .eslintrc src/**/*.js",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js -- --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",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"prebuild": "rimraf dist",
"prepare": "husky install"
},
"keywords": [
"motorcortex",
"animation"
],
"lint-staged": {
"*.{json,md,yml,yaml}": [
"prettier --write"
],
"*.css": [
"prettier --write"
],
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"peerDependencies": {
"@donkeyclip/motorcortex": ">= 8 < 10"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@donkeyclip/motorcortex": "^9.5.0",
"@donkeyclip/motorcortex-player": "^2.10.7",
"@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",
"babel-loader": "^9.1.0",
"browserslist": "^4.21.4",
"caniuse-lite": "^1.0.30001439",
"concurrently": "^7.6.0",
"core-js": "^3.26.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"rimraf": "3.0.2",
"rollup": "2.75.4",
"rollup-plugin-terser": "7.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}