-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "nunix",
"version": "0.1.0-alpha.2",
"description": "Tool for executing Unix commands on NodeJs.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": {
"name": "(Romullo)",
"email": "developermarsh@gmail.com",
"url": "https://hiukky.com"
},
"bugs": {
"url": "https://github.com/hiukky/nunix/issues"
},
"homepage": "https://github.com/hiukky/nunix#readme",
"repository": {
"type": "git",
"url": "https://github.com/hiukky/nunix"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "esbuild index.ts --outfile=dist/index.js --bundle --platform=node --minify",
"dev": "tsnd --respawn index.ts",
"postbuild": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:cov": "jest --coverage",
"format": "prettier --write \"**/*.ts\""
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/type-check": "^0.3.27",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"esbuild": "^0.8.40",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.0",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"files": [
"dist"
],
"keywords": [
"unix",
"linux",
"shell"
]
}