-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "@liquid-labs/bash-toolkit",
"version": "1.0.0-alpha.61",
"description": "A collection of useful bash functions.",
"files": [
"dist"
],
"scripts": {
"build": "make",
"lint": "make lint",
"lint-fix": "make lint-fix",
"test": "make test",
"prepare": "npm run build",
"preversion": "make qa",
"install-clean": "rm -rf package-lock.json node_modules/ && npm install",
"qa": "make qa"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Liquid-Labs/bash-toolkit.git"
},
"keywords": [
"bash",
"toolkit"
],
"author": "Zane Rockenbaugh <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Liquid-Labs/bash-toolkit/issues"
},
"homepage": "https://github.com/Liquid-Labs/bash-toolkit#readme",
"devDependencies": {
"@liquid-labs/bash-rollup": "^1.0.0-alpha.4",
"@liquid-labs/catalyst-scripts": "^1.0.0-alpha.57",
"shelljs": "^0.8.3"
},
"liquidDev": {
"orgBase": "[email protected]:Liquid-Labs/Liquid-Labs.git",
"changeControl": {
"type": "code"
}
}
}