-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "prejudice",
"version": "1.0.2",
"description": "Produce universal library with webpack and es6",
"main": "lib/prejudice.js",
"scripts": {
"build": "npm run lint -- --fix && npm run build:webpack && npm run build:prod",
"build:dev": "npm run build:webpack -- --progress --color --watch",
"build:prod": "npm run build:webpack -- --mode=production --env=build",
"build:webpack": "webpack --mode=${mode:=development} $* --env ${env:=dev}",
"lint": "npx eslint src $*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/krasimir/webpack-library-starter.git"
},
"keywords": [
"webpack",
"es6",
"starter",
"library",
"universal",
"umd",
"commonjs"
],
"author": "Krasimir Tsonev, Albert Bertram",
"license": "MIT",
"bugs": {
"url": "https://github.com/krasimir/webpack-library-starter/issues"
},
"homepage": "https://github.com/krasimir/webpack-library-starter",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.17.0",
"babel-loader": "^9.2.1",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"idle-timeout": "^2.0.1",
"reqwest": "^2.0.5",
"xhr2": "^0.2.1"
}
}