-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "shelljs-transpiler",
"version": "0.2.6",
"description": "Translate bash to shelljs",
"keywords": [
"shelljs",
"shell",
"bash",
"convert",
"source",
"translate",
"transpile"
],
"main": "./bin/transpile.js",
"scripts": {
"start": "http-server -o",
"postpublish": "npm run deploy",
"posttest": "npm run lint --silent",
"lint": "jshint .",
"test": "nyc --reporter=text --reporter=lcov node scripts/runtests.js",
"deploy": "deploy-gh",
"release:major": "shelljs-release major",
"release:minor": "shelljs-release minor",
"release:patch": "shelljs-release patch"
},
"nyc": {
"include": ["scripts/", "src/"]
},
"author": "Nate Fischer <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/nfischer/shelljs-transpiler"
},
"license": "MIT",
"bin": {
"sh2js": "./bin/sh2js"
},
"files": [
"package.json",
"src",
"bin",
"lib",
"index.html",
"fonts"
],
"devDependencies": {
"colors": "1.4.0",
"deploy-gh": "^0.2.1",
"http-server": "^13.1.0",
"jshint": "^2.13.3",
"nyc": "^15.1.0",
"shelljs-release": "^0.5.2"
},
"dependencies": {
"minimist": "^1.2.5",
"shelljs": "^0.8.5"
},
"engines": {
"node": ">=10"
}
}