Skip to content

Commit b56e3d1

Browse files
The unscoped NPM package is now just a wrapper around the @jsdevtools scoped package
1 parent 622545e commit b56e3d1

File tree

3 files changed

+51
-0
lines changed

3 files changed

+51
-0
lines changed

dist/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"use strict";
2+
module.exports = require("@jsdevtools/simplifyify");

dist/package.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "simplifyify",
3+
"version": "X.X.X",
4+
"description": "A simplified Browserify and Watchify CLI",
5+
"keywords": [
6+
"browserify",
7+
"browserify-plugin",
8+
"watchify",
9+
"cli",
10+
"minify",
11+
"uglify",
12+
"uglifyify",
13+
"sourcemap",
14+
"source-map",
15+
"source map",
16+
"exorcist",
17+
"istanbul"
18+
],
19+
"author": {
20+
"name": "James Messinger",
21+
"url": "https://jamesmessinger.com"
22+
},
23+
"homepage": "https://jstools.dev/simplifyify",
24+
"repository": {
25+
"type": "git",
26+
"url": "https://github.com/JS-DevTools/simplifyify.git"
27+
},
28+
"license": "MIT",
29+
"main": "index.js",
30+
"bin": {
31+
"simplifyify": "simplifyify.js"
32+
},
33+
"files": [
34+
"simplifyify.js",
35+
"index.js"
36+
],
37+
"engines": {
38+
"node": ">=10"
39+
},
40+
"dependencies": {
41+
"@jsdevtools/simplifyify": "X.X.X"
42+
},
43+
"peerDependencies": {
44+
"typescript": "*"
45+
}
46+
}

dist/simplifyify.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env node
2+
"use strict";
3+
require("@jsdevtools/simplifyify/bin/simplifyify.js");

0 commit comments

Comments
 (0)