Skip to content

Commit fbd73e0

Browse files
The unscoped NPM package is now just a wrapper around the @jsdevtools scoped package
1 parent 10910ae commit fbd73e0

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

dist/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"use strict";
2+
module.exports = require("@jsdevtools/sourcemapify");

dist/package.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "sourcemapify",
3+
"version": "X.X.X",
4+
"description": "Source Map plugin for Browserify",
5+
"keywords": [
6+
"browserify",
7+
"browserify-plugin",
8+
"sourcemap",
9+
"source-map",
10+
"source map"
11+
],
12+
"author": {
13+
"name": "James Messinger",
14+
"url": "https://jamesmessinger.com"
15+
},
16+
"homepage": "https://jstools.dev/sourcemapify",
17+
"license": "MIT",
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/JS-DevTools/sourcemapify.git"
21+
},
22+
"main": "index.js",
23+
"files": [
24+
"index.js"
25+
],
26+
"engines": {
27+
"node": ">=10"
28+
},
29+
"dependencies": {
30+
"@jsdevtools/sourcemapify": "X.X.X"
31+
}
32+
}

0 commit comments

Comments
 (0)