-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 948 Bytes
/
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
{
"name": "scriptz",
"version": "2.0.0",
"description": "Configuration file based script runner",
"main": "src/index.js",
"bin": {
"scriptz": "./bin/scriptz"
},
"scripts": {
"prepare": "npm run build",
"lint-fix": "prettier --write src/**/*.ts",
"lint": "prettier --list-different src/**/*.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/abelmokadem/scriptz.git"
},
"keywords": [
"bash"
],
"author": "Ash Belmokadem",
"license": "ISC",
"bugs": {
"url": "https://github.com/abelmokadem/scriptz/issues"
},
"homepage": "https://github.com/abelmokadem/scriptz#readme",
"devDependencies": {
"@types/node": "^8.0.57",
"prettier": "^1.9.1",
"typescript": "^2.6.2"
},
"dependencies": {
"@types/js-yaml": "^3.10.1",
"commander": "^2.12.2",
"js-yaml": "^3.10.0",
"rxjs": "^5.5.5",
"winston": "^3.0.0-rc1"
}
}