forked from liquid-labs/bash-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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": "@liquid-labs/bash-toolkit",
"version": "1.0.0-alpha.19",
"description": "A collection of useful bash functions.",
"files": [
"dist/",
"src/"
],
"bin": {
"rollup-bash": "dist/rollup-bash.sh"
},
"scripts": {
"prebuild": "mkdir -p ./dist && rm -rf ./dist/*",
"build": "./bin/rollup-bash.sh ./bin/rollup-bash.sh ./dist/rollup-bash.sh ./src",
"watch": "watch 'npm run build' ./src ./bin",
"lint": "catalyst-scripts lint",
"pretest": "TEST_TYPES=unit catalyst-scripts pretest && mkdir -p test-tmp/",
"test": "TEST_TYPES=unit catalyst-scripts test",
"posttest": "rm -rf test-tmp/",
"preversion": "npm test",
"version": "npm run build && git add -fA dist",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"install-clean": "rm -rf package-lock.json node_modules/ && npm install"
},
"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/catalyst-scripts": "^1.0.0-alpha.24",
"shelljs": "^0.8.3",
"watch": "^1.0.2"
}
}