-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "webpack-concat-files-plugin",
"version": "0.5.2",
"description": "Concatenate and transform files using Webpack",
"main": "src/index.js",
"scripts": {
"test-webpack4": "cd webpack-4 && yarn install && yarn test && cd ..",
"test-webpack5": "cd webpack-5 && yarn install && yarn test && cd ..",
"test-unit": "npx mocha ./test/unit/**/**/*.test.js",
"test": "npm run test-unit --scripts-prepend-node-path && npm run test-webpack4 --scripts-prepend-node-path && npm run test-webpack5 --scripts-prepend-node-path"
},
"repository": "https://github.com/damorej-at-theinstitutes/webpack-concat-files-plugin.git",
"author": "The Institutes <damorej@theinstitutes.org>",
"license": "MIT",
"private": false,
"dependencies": {
"globby": "^10.0.1",
"schema-utils": "^3.0.0",
"webpack-sources": "^1.4.3"
},
"peerDependencies": {
"webpack": "4.x || 5.x"
},
"files": [
"/src"
],
"keywords": [
"webpack",
"plugin",
"concat",
"concatenation",
"files",
"transform"
],
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.2.1"
}
}