@blockstack/clarity-cli
Advanced tools
Comparing version 0.1.2-alpha.0 to 0.1.3-alpha.0
@@ -1,1 +0,1 @@ | ||
{"version":"0.1.2-alpha.0","commands":{"new":{"id":"new","description":"Generate new project","pluginName":"@blockstack/clarity-cli","pluginType":"core","aliases":[],"examples":["$ clarity new <PROJECT_NAME>"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"show CLI help","allowNo":false}},"args":[{"name":"project"}]},"setup":{"id":"setup","description":"Install blockstack-core and its dependencies","pluginName":"@blockstack/clarity-cli","pluginType":"core","aliases":[],"examples":["$ clarity setup"],"flags":{"from_source":{"name":"from_source","type":"boolean","description":"Compile binary from Rust source instead of downloading distributable.","allowNo":false},"overwrite":{"name":"overwrite","type":"boolean","description":"Overwrites an existing installed clarity-cli bin file.","allowNo":false}},"args":[]}}} | ||
{"version":"0.1.3-alpha.0","commands":{"new":{"id":"new","description":"Generate new project","pluginName":"@blockstack/clarity-cli","pluginType":"core","aliases":[],"examples":["$ clarity new <PROJECT_NAME>"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"show CLI help","allowNo":false}},"args":[{"name":"project"}]},"setup":{"id":"setup","description":"Install blockstack-core and its dependencies","pluginName":"@blockstack/clarity-cli","pluginType":"core","aliases":[],"examples":["$ clarity setup"],"flags":{"from_source":{"name":"from_source","type":"boolean","description":"Compile binary from Rust source instead of downloading distributable.","allowNo":false},"overwrite":{"name":"overwrite","type":"boolean","description":"Overwrites an existing installed clarity-cli bin file.","allowNo":false}},"args":[]}}} |
{ | ||
"name": "@blockstack/clarity-cli", | ||
"version": "0.1.3-alpha.0", | ||
"description": "The Clarity CLI is used to manage Clarity smart contracts from the command line.", | ||
"version": "0.1.2-alpha.0", | ||
"author": "Blockstack <engineering@blockstack.com> (https://blockstack.com/)", | ||
"license": "MIT", | ||
"repository": "blockstack/clarity-js-sdk", | ||
"homepage": "https://github.com/blockstack/clarity-js-sdk/tree/master/packages/clarity-cli#readme", | ||
"bugs": "https://github.com/blockstack/clarity-js-sdk/issues", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"bin": { | ||
"clarity": "./bin/run" | ||
}, | ||
"bugs": "https://github.com/blockstack/clarity-js-sdk/issues", | ||
"dependencies": { | ||
"@blockstack/clarity": "^0.1.2-alpha.0", | ||
"@blockstack/clarity-native-bin": "^0.1.2-alpha.0", | ||
"@oclif/command": "^1.5.13", | ||
"@oclif/config": "^1.13.0", | ||
"@oclif/plugin-help": "^2.1.6", | ||
"fs-extra": "^8.0.1", | ||
"tslib": "^1.9.3" | ||
}, | ||
"devDependencies": { | ||
"@oclif/dev-cli": "^1.22.0", | ||
"@oclif/test": "^1.2.4", | ||
"@oclif/tslint": "^3.1.1", | ||
"@types/chai": "^4.1.7", | ||
"@types/fs-extra": "^7.0.0", | ||
"@types/mocha": "^5.2.7", | ||
"@types/node": "^10", | ||
"chai": "^4.2.0", | ||
"globby": "^9.2.0", | ||
"mocha": "^6.1.4", | ||
"nyc": "^14.1.1", | ||
"shx": "^0.3.2", | ||
"ts-node": "^8.2.0", | ||
"tslint": "^5.17.0", | ||
"typescript": "^3.5.1" | ||
}, | ||
"engines": { | ||
"node": ">=8.0.0" | ||
"node": ">=10" | ||
}, | ||
@@ -45,5 +27,2 @@ "files": [ | ||
], | ||
"homepage": "https://github.com/blockstack/clarity-js-sdk/tree/master/packages/clarity-cli", | ||
"license": "MIT", | ||
"main": "lib/index.js", | ||
"oclif": { | ||
@@ -57,6 +36,2 @@ "commands": "./lib/commands", | ||
}, | ||
"repository": "blockstack/clarity-js-sdk", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
@@ -71,8 +46,47 @@ "build": "npm run clean && npm run compile", | ||
"postpack": "rm -f oclif.manifest.json", | ||
"posttest": "tslint -p test -t stylish", | ||
"build-oclif": "oclif-dev manifest && oclif-dev readme", | ||
"test": "npm run build && nyc mocha" | ||
}, | ||
"types": "lib/index.d.ts", | ||
"gitHead": "575ecdfea27b84773ad79bdd5b6bb80012aac60f" | ||
"dependencies": { | ||
"@blockstack/clarity": "^0.1.3-alpha.0", | ||
"@blockstack/clarity-native-bin": "^0.1.3-alpha.0", | ||
"@oclif/command": "^1.5.13", | ||
"@oclif/config": "^1.13.0", | ||
"@oclif/plugin-help": "^2.1.6", | ||
"fs-extra": "^8.0.1", | ||
"tslib": "^1.9.3" | ||
}, | ||
"devDependencies": { | ||
"@oclif/dev-cli": "^1.22.0", | ||
"@oclif/test": "^1.2.4", | ||
"@oclif/tslint": "^3.1.1", | ||
"@types/chai": "^4.1.7", | ||
"@types/fs-extra": "^7.0.0", | ||
"@types/mocha": "^5.2.7", | ||
"@types/node": "^10.14.8", | ||
"chai": "^4.2.0", | ||
"globby": "^9.2.0", | ||
"mocha": "^6.1.4", | ||
"nyc": "^14.1.1", | ||
"shx": "^0.3.2", | ||
"source-map-support": "^0.5.12", | ||
"ts-node": "^8.2.0", | ||
"tslint": "^5.17.0", | ||
"typescript": "^3.5.1" | ||
}, | ||
"nyc": { | ||
"all": true, | ||
"cache": false, | ||
"extension": [ | ||
".ts" | ||
], | ||
"include": [ | ||
"src" | ||
], | ||
"reporter": [ | ||
"text", | ||
"lcov" | ||
] | ||
}, | ||
"gitHead": "01d0f6cb83cc9cf49e8885ff3ee7f59a6212bc1a" | ||
} |
@@ -13,3 +13,3 @@ | ||
$ clarity (-v|--version|version) | ||
@blockstack/clarity-cli/0.1.2-alpha.0 darwin-x64 node-v10.15.3 | ||
@blockstack/clarity-cli/0.1.3-alpha.0 darwin-x64 node-v10.15.3 | ||
$ clarity --help [COMMAND] | ||
@@ -16,0 +16,0 @@ USAGE |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
12052
0
16