forked from liquid-labs/liq-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.67 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
{
"name": "@liquid-labs/liq-cli",
"version": "1.0.0-prototype.10",
"description": "A process aware development, testing, and deployment management tool.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"prebuild": "command -v rollup-bash >/dev/null && rm -rf ./dist",
"build": "mkdir -p dist && rollup-bash ./src/cli.sh ./dist/liq.sh && rollup-bash ./src/install.sh ./dist/install.sh",
"watch": "watch 'npm run build' ./src",
"pretest": "catalyst-scripts pretest && babel --source-maps inline src -d test-staging",
"test": "catalyst-scripts test",
"posttest": "rm -rf test-tmp/",
"install": "./dist/install.sh",
"lint": "catalyst-scripts lint",
"lint-fix": "catalyst-scripts lint-fix",
"clean": "rm -rf package-lock.json node_modules/ dist/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Liquid-Labs/liq-cli.git"
},
"author": "Zane Rockenbaugh <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Liquid-Labs/liq-cli/issues"
},
"homepage": "https://liquid-labs.github.io/liq-cli/",
"dependencies": {
"@liquid-labs/catalyst-scripts": "^1.0.0-alpha.27",
"@liquid-labs/policies-model": "^1.0.0-beta.27"
},
"bin": {
"liq": "./dist/liq.sh"
},
"devDependencies": {
"@babel/preset-env": "^7.3.1",
"@liquid-labs/bash-toolkit": "^1.0.0-alpha.40",
"npm-run-all": "^4.1.5",
"shelljs": "^0.8.3",
"watch": "^1.0.2"
},
"catalyst": {
"version-check": {
"options": "--skip-unused"
}
},
"liquidDev": {
"orgBase": "[email protected]:Liquid-Labs/Liquid-Labs.git",
"changeControl": {
"type": "code"
}
}
}