UNPKG

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