audioshowkit/package.json

48 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "audioshowkit",
"version": "1.0.0",
"description": "",
"main": "app.js",
2022-04-16 08:22:01 +00:00
"private": true,
"type": "module",
"scripts": {
"build:prod": "webpack --config webpack.prod.cjs",
"build:dev": "webpack --config webpack.dev.cjs",
2022-04-18 04:38:57 +00:00
"test:junit": "mocha tests/** --reporter mocha-junit-reporter --reporter-options mochaFile=./junit/test_results.xml",
"test:console": "mocha tests/**",
"watch:docs": "nodemon --watch dist/ --watch tutorials/ --watch src/ --exec 'npm run docs' -e js,mjs,json,htm,html,xml,markdown,md,xhtml,css --ignore ./tutorials/assets/js/audioshowkit.js",
"watch:lib": "webpack --watch --config webpack.dev.cjs",
2022-04-18 20:11:42 +00:00
"serve:docs": "cd ./docs && live-server",
"build": "npm run build:dev",
"test": "npm run test:console",
"watch": "npm run watch:lib",
2022-04-18 20:11:42 +00:00
"docs": "jsdoc -c jsdoc.config.json && cp ./dist/audioshowkit.js ./tutorials/assets/js/audioshowkit.js && syncdir ./tutorials/assets/ ./docs/assets/",
"serve": "npm run serve:docs"
},
2022-11-25 16:20:21 +00:00
"author": "Reslate",
"license": "ISC",
"devDependencies": {
2022-04-16 08:22:01 +00:00
"@babel/core": "^7.17.9",
2022-04-18 02:54:43 +00:00
"@babel/eslint-parser": "^7.17.0",
2022-04-16 08:22:01 +00:00
"@babel/preset-env": "^7.16.11",
2022-04-18 07:12:43 +00:00
"@ckeditor/jsdoc-plugins": "^30.1.3",
2022-04-16 08:22:01 +00:00
"babel-loader": "^8.2.4",
"chai": "^4.3.6",
"css-loader": "^6.7.1",
"eslint": "^8.13.0",
"eslint-plugin-import": "^2.26.0",
2022-04-18 06:31:27 +00:00
"eslint-plugin-jsdoc": "^39.2.2",
"eslint-webpack-plugin": "^3.1.1",
2022-04-18 07:12:43 +00:00
"jsdoc": "^3.6.10",
2022-11-25 16:20:21 +00:00
"live-server": "^1.1.0",
"mocha": "^9.2.2",
"mocha-junit-reporter": "^2.0.2",
"nodemon": "^2.0.15",
"style-loader": "^3.3.1",
"sync-directory": "^4.0.12",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
}
2022-11-25 16:20:21 +00:00
}