UNPKG

1.44 kBJSONView Raw
1{
2 "name": "webpack-sources",
3 "version": "0.1.5",
4 "description": "Source code handling classes for webpack",
5 "main": "./lib/index.js",
6 "scripts": {
7 "pretest": "npm run lint && npm run beautify-lint",
8 "test": "mocha --full-trace --check-leaks",
9 "travis": "npm run cover -- --report lcovonly",
10 "lint": "eslint lib test",
11 "beautify-lint": "beautify-lint lib/**.js test/**.js",
12 "beautify": "beautify-rewrite lib/**.js test/**.js",
13 "precover": "npm run lint && npm run beautify-lint",
14 "cover": "istanbul cover node_modules/mocha/bin/_mocha",
15 "publish-patch": "npm test && npm version patch && git push && git push --tags && npm publish"
16 },
17 "dependencies": {
18 "source-map": "~0.5.3",
19 "source-list-map": "~0.1.7"
20 },
21 "devDependencies": {
22 "beautify-lint": "^1.0.3",
23 "codecov.io": "^0.1.6",
24 "coveralls": "^2.11.6",
25 "eslint": "^1.1.0",
26 "eslint-plugin-nodeca": "^1.0.3",
27 "istanbul": "^0.4.1",
28 "js-beautify": "^1.5.10",
29 "mocha": "^2.3.4",
30 "should": "^8.0.2"
31 },
32 "files": [
33 "lib/"
34 ],
35 "repository": {
36 "type": "git",
37 "url": "git+https://github.com/webpack/webpack-sources.git"
38 },
39 "keywords": [
40 "webpack",
41 "source-map"
42 ],
43 "author": "Tobias Koppers @sokra",
44 "license": "MIT",
45 "bugs": {
46 "url": "https://github.com/webpack/webpack-sources/issues"
47 },
48 "homepage": "https://github.com/webpack/webpack-sources#readme"
49}