forked from codepunkt/webpack-license-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.52 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.52 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "webpack-license-plugin",
"version": "4.1.2",
"description": "Extracts OSS license information of the npm packages in your webpack output",
"keywords": [
"webpack",
"build",
"artifact",
"oss",
"open source",
"compliance",
"copyright",
"license",
"licence",
"licenses",
"licences",
"scan",
"scanner",
"bom",
"bill of materials",
"plugin"
],
"main": "./dist/index.js",
"author": "Christoph Werner <christoph@codepunkt.de>",
"repository": {
"type": "git",
"url": "https://github.com/codepunkt/webpack-license-plugin"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"clean": "shx rm -rf dist",
"lint": "tslint 'src/**/*.ts' --project tsconfig.json",
"build": "yarn run lint && yarn run clean && tsc",
"install:e2e": "cd test/e2e/example && yarn",
"manual": "yarn run build && webpack --config test/e2e/webpack.config.js",
"prepublishOnly": "yarn run build",
"test": "is-ci \"test:ci\" \"test:watch\"",
"test:e2e": "jest --runInBand --testPathPattern test/e2e",
"test:unit": "jest --runInBand --testPathPattern test/unit --verbose",
"test:watch": "jest --runInBand --testPathPattern test/unit --watch",
"test:ci": "cross-env CI=true jest --runInBand --verbose --colors && codecov -t $CODECOV_TOKEN"
},
"dependencies": {
"chalk": "^4.1.0",
"get-npm-tarball-url": "^2.0.1",
"lodash": "^4.17.20",
"needle": "^2.2.4",
"spdx-expression-validate": "^2.0.0",
"webpack-sources": "^2.0.0"
},
"devDependencies": {
"@types/jest": "26.0.14",
"@types/lodash": "^4.14.118",
"@types/memory-fs": "^0.3.2",
"@types/needle": "^2.0.4",
"@types/node": "^14.0.23",
"@types/webpack": "^5.28.0",
"@types/webpack-sources": "^2.1.0",
"codecov": "^3.1.0",
"cross-env": "^7.0.2",
"is-ci-cli": "^2.0.0",
"jest": "^24.1.0",
"jest-watch-typeahead": "^0.5.0",
"lint-staged": "^10.3.0",
"memory-fs": "^0.5.0",
"prettier": "^2.1.1",
"shx": "^0.3.2",
"ts-jest": "^24.0.0",
"ts-loader": "^8.0.11",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-microsoft-contrib": "^6.0.0",
"typescript": "^3.1.6",
"webpack": "5.38.1",
"webpack-cli": "4.7.0",
"webpack2": "npm:webpack@^2",
"webpack3": "npm:webpack@^3",
"webpack4": "npm:webpack@^4"
},
"peerDependencies": {
"webpack": ">=4.0.0 < 6.0.0"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
}
}