UNPKG

trieste

Version:
60 lines (59 loc) 1.73 kB
{ "name": "trieste", "version": "0.2.0", "description": "Trie generator.", "author": "Mark <mark@remarkablemark.org>", "main": "index.js", "scripts": { "build": "npm run clean && npm run build:unmin && npm run build:min", "build:min": "uglifyjs dist/trieste.js --output dist/trieste.min.js --compress --mangle --source-map url=trieste.min.js.map,includeSources", "build:unmin": "rollup --config --file dist/trieste.js", "clean": "rimraf dist", "coveralls": "nyc report --reporter=text-lcov | coveralls", "lint": "eslint --ignore-path .gitignore .", "lint:fix": "npm run lint -- --fix", "prepublishOnly": "npm run lint && npm test && npm run build", "release": "standard-version --no-verify", "test": "mocha", "test:coverage": "nyc npm test", "test:coverage:report": "nyc report --reporter=html", "test:watch": "mocha --watch" }, "repository": { "type": "git", "url": "https://github.com/remarkablemark/trieste" }, "bugs": { "url": "https://github.com/remarkablemark/trieste/issues" }, "keywords": [ "trieste", "trie", "data structure", "digital tree", "radix tree", "prefix tree", "search tree" ], "devDependencies": { "@commitlint/cli": "^8.0.0", "@commitlint/config-conventional": "^8.0.0", "coveralls": "^3.0.4", "eslint": "^5.16.0", "eslint-plugin-prettier": "^3.1.0", "husky": "^2.4.1", "lint-staged": "^8.2.1", "mocha": "^6.1.4", "nyc": "^14.1.1", "prettier": "^1.18.2", "rollup": "^1.20.3", "rollup-plugin-commonjs": "^10.1.0", "standard-version": "^6.0.1", "uglify-js": "^3.6.0" }, "files": [ "/dist", "/lib" ], "license": "MIT" }