factom-vote
Version:
JS implementation of the Factom voting specification
56 lines (55 loc) • 1.71 kB
JSON
{
"name": "factom-vote",
"version": "0.3.5",
"description": "JS implementation of the Factom voting specification",
"main": "src/factom-vote.js",
"scripts": {
"lint": "eslint src/",
"build": "webpack",
"prepublishOnly": "npm run lint && npm run build && npm run test",
"test": "nyc --reporter=html --reporter=text mocha test/*.spec.js",
"test:integration": "mocha test/*.integration.spec.js",
"test:unit": "mocha test/*unit.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaulBernier/factom-vote.git"
},
"keywords": [
"factom",
"blockchain",
"vote",
"voting"
],
"author": "Paul Bernier",
"license": "MIT",
"bugs": {
"url": "https://github.com/PaulBernier/factom-vote/issues"
},
"homepage": "https://github.com/PaulBernier/factom-vote#readme",
"dependencies": {
"ajv": "^6.10.0",
"base-58": "0.0.1",
"bluebird": "^3.5.3",
"factom": "1.0.2",
"hash.js": "^1.1.7",
"tweetnacl": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-transform-async-to-generator": "^7.4.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/runtime": "^7.4.2",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"dotenv": "^7.0.0",
"eslint": "^5.15.3",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"sinon": "^7.3.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}