source: trip-planner-front/node_modules/license-webpack-plugin/package.json@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.8 KB
Line 
1{
2 "name": "license-webpack-plugin",
3 "version": "2.3.20",
4 "description": "Outputs licenses from 3rd party libraries to a file",
5 "main": "dist/index.js",
6 "typings": "dist/index.d.ts",
7 "files": [
8 "/dist/**/*",
9 "/MIGRATION.md",
10 "/DOCUMENTATION.md"
11 ],
12 "scripts": {
13 "clean": "rimraf dist",
14 "format": "cross-env prettier --single-quote --write 'src/**/*.ts'",
15 "format:e2e": "cross-env prettier --ignore-path .gitignore --single-quote --write 'e2e/**/*.js'",
16 "lint": "cross-env tslint 'src/**/*.ts' --project tsconfig.json",
17 "build": "yarn run format && yarn run lint && yarn run clean && tsc",
18 "prepublishOnly": "yarn run build",
19 "jest": "jest",
20 "test:unit": "yarn run build && yarn run jest",
21 "test:e2e": "yarn run format:e2e && yarn --cwd e2e/webpack-v4 && yarn --cwd e2e/webpack-v5 && jest --config jest.config.e2e.js --runInBand",
22 "test": "yarn run test:unit && yarn run test:e2e"
23 },
24 "repository": {
25 "type": "git",
26 "url": "git+ssh://git@github.com/xz64/license-webpack-plugin.git"
27 },
28 "keywords": [
29 "license",
30 "plugin",
31 "webpack"
32 ],
33 "author": "S K (xz64)",
34 "license": "ISC",
35 "bugs": {
36 "url": "https://github.com/xz64/license-webpack-plugin/issues"
37 },
38 "homepage": "https://github.com/xz64/license-webpack-plugin#readme",
39 "devDependencies": {
40 "@types/jest": "^22.2.2",
41 "cross-env": "^5.2.0",
42 "jest": "^22.4.3",
43 "prettier": "^1.19.1",
44 "rimraf": "^2.6.2",
45 "ts-jest": "^22.4.2",
46 "tslint": "^5.9.1",
47 "tslint-config-airbnb": "^5.8.0",
48 "tslint-config-prettier": "^1.10.0",
49 "typescript": "^3.8.0"
50 },
51 "dependencies": {
52 "@types/webpack-sources": "^0.1.5",
53 "webpack-sources": "^1.2.0"
54 },
55 "peerDependenciesMeta": {
56 "webpack": {
57 "optional": true
58 }
59 }
60}
Note: See TracBrowser for help on using the repository browser.