-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
68 lines (68 loc) · 2.15 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
{
"name": "waveplayer",
"version": "2.0.0",
"description": "A HTML and JavaScript based audio player with a waveform view",
"main": "dist/waveplayer.js",
"module": "dist/waveplayer.es.js",
"files": [
"dist"
],
"scripts": {
"test": "cross-env NODE_ENV=test npx jest",
"development": "cross-env NODE_ENV=local npx rollup --config rollup.config.ts --configPlugin typescript",
"dev": "npm run development",
"production": "cross-env NODE_ENV=production npx rollup --config rollup.config.ts --configPlugin typescript",
"prod": "npm run production",
"watch": "cross-env NODE_ENV=local npx rollup --config rollup.config.ts --configPlugin typescript --watch",
"lint": "npx eslint --ext .ts,.js ./",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaeldzjap/waveplayer.js.git"
},
"keywords": [
"audio",
"waveform",
"canvas",
"html",
"javascript"
],
"author": "Michael Dzjaparidze",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaeldzjap/waveplayer.js/issues"
},
"homepage": "https://github.com/michaeldzjap/waveplayer.js#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^6.1.5",
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"canvas": "^2.10.2",
"cross-env": "^7.0.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^9.0.11",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"rollup": "^4.7.0",
"ts-jest": "^29.0.3",
"typescript": "^5.0.2"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix"
}
}