-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
72 lines (72 loc) · 2.09 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
{
"name": "crunker",
"version": "2.4.1",
"description": "Simple way to merge or concatenate audio files with the Web Audio API.",
"main": "dist/crunker.js",
"types": "dist/crunker.d.ts",
"directories": {
"test": "test",
"src": "src"
},
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn run type-check -- --watch",
"build": "yarn run build:prod && yarn run build:types",
"build:test": "webpack --config webpack.test.config.js --mode development",
"build:prod": "yarn run build:prod:cjs && yarn run build:prod:esm",
"build:prod:cjs": "webpack --config webpack.config.js --mode production",
"build:prod:esm": "webpack --config webpack.esm.config.js --mode production",
"build:types": "tsc --emitDeclarationOnly",
"prepublishOnly": "yarn run build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "NODE_ENV=development yarn run build:test && karma start --single-run --browsers ChromeHeadless karma.conf.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaggad/crunker.git"
},
"keywords": [
"web-audio-api",
"es6",
"merge",
"concatenate",
"append",
"export",
"download"
],
"author": "Jack Edgson",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"dist"
],
"bugs": {
"url": "https://github.com/jaggad/crunker/issues"
},
"homepage": "https://github.com/jaggad/crunker#readme",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"babel-loader": "^8.3.0",
"babel-minify": "^0.5.2",
"chai": "^4.3.7",
"karma": "^6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"mocha": "^9.2.2",
"prettier": "^2.8.3",
"terser-webpack-plugin": "^5.3.6",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "yarn@3.3.1"
}