UNPKG

1.35 kBJSONView Raw
1{
2 "name": "webpack-sources",
3 "version": "3.0.2",
4 "description": "Source code handling classes for webpack",
5 "main": "./lib/index.js",
6 "scripts": {
7 "pretest": "yarn lint",
8 "test": "jest",
9 "lint": "eslint --cache lib test",
10 "cover": "jest --coverage"
11 },
12 "devDependencies": {
13 "coveralls": "^3.0.2",
14 "eslint": "^7.7.0",
15 "eslint-config-prettier": "^6.11.0",
16 "eslint-plugin-jest": "^23.20.0",
17 "eslint-plugin-mocha": "^8.0.0",
18 "eslint-plugin-node": "^11.1.0",
19 "eslint-plugin-nodeca": "^1.0.3",
20 "eslint-plugin-prettier": "^3.0.1",
21 "istanbul": "^0.4.1",
22 "jest": "^26.4.0",
23 "prettier": "^2.0.5",
24 "source-map": "^0.7.3",
25 "sourcemap-validator": "^2.1.0"
26 },
27 "files": [
28 "lib/"
29 ],
30 "engines": {
31 "node": ">=10.13.0"
32 },
33 "repository": {
34 "type": "git",
35 "url": "git+https://github.com/webpack/webpack-sources.git"
36 },
37 "keywords": [
38 "webpack",
39 "source-map"
40 ],
41 "author": "Tobias Koppers @sokra",
42 "license": "MIT",
43 "bugs": {
44 "url": "https://github.com/webpack/webpack-sources/issues"
45 },
46 "homepage": "https://github.com/webpack/webpack-sources#readme",
47 "jest": {
48 "forceExit": true,
49 "testMatch": [
50 "<rootDir>/test/*.js"
51 ],
52 "transformIgnorePatterns": [
53 "<rootDir>"
54 ],
55 "testEnvironment": "node"
56 }
57}