-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "codec-string",
"version": "0.1.4",
"description": "decode the codecs= string in a media mime type",
"type": "module",
"engines": {
"node": ">=16"
},
"exports": {
".": {
"import": "./src/index.js",
"require": "./src/index.cjs",
"script": "./src/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "rm -rf dist",
"build": "webpack --config ./webpack-esm.cjs --mode production && webpack --config ./webpack-cjs.cjs --mode production --no-output-clean && webpack --config ./webpack-script.cjs --mode production --no-output-clean",
"lint": "eslint 'src/*.js'",
"start": "webpack serve --config ./webpack-esm.cjs --mode development",
"test": "echo \"Error: no test specified\" && exit 0"
},
"sideEffects": [
"./src/decode.js"
],
"keywords": [],
"author": "[email protected]",
"license": "BSD",
"dependencies": {
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"eslint-plugin-import-quotes": "^0.0.1",
"eslint-webpack-plugin": "^4.2.0",
"html-webpack-plugin": "^5.6.3",
"webpack-merge": "^6.0.1"
},
"devDependencies": {
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/paulhiggs/codec-string"
}
}