This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
65 lines (65 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "concat-text-webpack-plugin",
"version": "0.2.1",
"description": "Concatenate and extract text files.",
"main": "dist/cjs.js",
"files": [
"dist"
],
"engines": {
"node": ">=8 <=16"
},
"scripts": {
"prebuild": "npm run clean",
"build": "babel src -d dist",
"prepublishOnly": "npm run build && pkg-ok",
"release": "npm version -m \"chore(release): :package: new version for webpack-concat-text-plugin\"",
"clean": "rimraf dist",
"pretest": "npm run lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/index.js test"
},
"author": "Patrick Lam <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/merkle-open/webpack-concat-text-plugin.git"
},
"dependencies": {
"concat": "1.0.3",
"glob": "7.1.6",
"webpack-sources": "1.4.3"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@namics/eslint-config": "9.0.5",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"eslint": "7.17.0",
"eslint-plugin-import": "2.22.1",
"jest": "26.6.3",
"memory-fs": "0.5.0",
"pkg-ok": "2.3.1",
"rimraf": "3.0.2",
"webpack": "4.43.0"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"testEnvironment": "node",
"watchPathIgnorePatterns": [
"<rootDir>/test/__output__"
],
"coverageDirectory": "test/coverage",
"collectCoverageFrom": [
"src/index.js",
"!**/node_modules/**",
"!**/test/**"
]
}
}