forked from sidvishnoi/esm-to-cjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "esm-to-cjs",
"version": "1.2.1",
"description": "Transform ESM to Common JS for present NodeJS, without any junk wrappers or useless renaming",
"keywords": [
"commonjs",
"cjs",
"es-module",
"transpile",
"compile",
"esm",
"module"
],
"homepage": "https://github.com/sidvishnoi/esm-to-cjs#readme",
"bugs": {
"url": "https://github.com/sidvishnoi/esm-to-cjs/issues"
},
"repository": "sidvishnoi/esm-to-cjs",
"license": "MIT",
"author": {
"name": "Sid Vishnoi",
"email": "[email protected]",
"url": "https://sidvishnoi.github.io"
},
"files": [
"index.js"
],
"main": "index.js",
"scripts": {
"build:core": "node scripts/core.js",
"build:gulp": "node scripts/gulp.js",
"build:site": "browserify src/core.js docs/main.js -o docs/app.js && uglifyjs.cmd docs/app.js -o docs/app.js",
"publish:core": "node scripts/backup.js && node scripts/core.js && npm publish && node scripts/restore.js",
"publish:gulp": "node scripts/backup.js && node scripts/gulp.js && npm publish && node scripts/restore.js",
"test": "node test/test.js",
"util:backup": "node scripts/backup.js",
"util:restore": "node scripts/restore.js"
},
"dependencies": {
"through2": "^2.0.3"
},
"devDependencies": {
"easy-table": "^1.1.1"
}
}