mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-26 12:55:38 +08:00
79 lines
1.9 KiB
JSON
79 lines
1.9 KiB
JSON
{
|
|
"name": "@blockstack/core-contracts",
|
|
"version": "1.0.0-alpha.0",
|
|
"description": "Core contracts",
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"repository": "blockstack/blockstack-core",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && npm run compile",
|
|
"clean": "shx rm -rf ./lib tsconfig.build.tsbuildinfo",
|
|
"compile": "tsc --build tsconfig.build.json",
|
|
"prepublishOnly": "npm run build",
|
|
"lint": "tslint -p tsconfig.json 'src/**/*.ts' 'test/**/*.ts'",
|
|
"lint-fix": "tslint --fix -p tsconfig.json 'src/**/*.ts' 'test/**/*.ts'",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch --coverage=false"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"files": [
|
|
"/src",
|
|
"/test",
|
|
"/lib",
|
|
"/contracts"
|
|
],
|
|
"dependencies": {
|
|
"@blockstack/clarity": "^0.3.7",
|
|
"@blockstack/clarity-native-bin": "^0.3.7",
|
|
"@stacks/network": "^1.2.0",
|
|
"@stacks/stacking": "^1.2.0",
|
|
"@stacks/transactions": "^1.2.2-alpha.0",
|
|
"bn": "^1.0.5",
|
|
"ripemd160": "^2.0.2",
|
|
"sha.js": "^2.4.11"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.3",
|
|
"@babel/preset-env": "^7.12.1",
|
|
"@babel/preset-typescript": "^7.12.1",
|
|
"@types/chai": "^4.1.7",
|
|
"@types/fs-extra": "^9.0.4",
|
|
"@types/jest": "^25.2.1",
|
|
"@types/ripemd160": "^2.0.0",
|
|
"@types/sha.js": "^2.4.0",
|
|
"@types/bn.js": "^4.11.6",
|
|
"@types/node": "^10",
|
|
"babel-jest": "^26.6.3",
|
|
"chai": "^4.2.0",
|
|
"fs-extra": "^9.0.1",
|
|
"jest": "^25.2.6",
|
|
"jest-circus": "^25.2.6",
|
|
"nyc": "^14.1.1",
|
|
"shx": "^0.3.2",
|
|
"source-map-support": "^0.5.12",
|
|
"ts-jest": "^25.3.0",
|
|
"ts-node": "^8.2.0",
|
|
"tslint": "^5.17.0",
|
|
"typescript": "^4.0.5"
|
|
},
|
|
"nyc": {
|
|
"all": true,
|
|
"cache": false,
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"include": [
|
|
"src"
|
|
],
|
|
"reporter": [
|
|
"text",
|
|
"lcov"
|
|
]
|
|
}
|
|
}
|