mirror of
https://github.com/borbann-platform/srs-document.git
synced 2025-12-20 13:04:06 +01:00
74 lines
1.9 KiB
JSON
74 lines
1.9 KiB
JSON
{
|
|
"name": "trie-prefix-tree",
|
|
"version": "1.5.1",
|
|
"description": "Create and modify trie prefix structures, extract word lists including anagrams and sub-anagrams",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "babel --out-dir dist src",
|
|
"prebuild": "rimraf dist",
|
|
"lint": "eslint src",
|
|
"report-coverage": "codecov",
|
|
"test": "jest",
|
|
"test-coverage": "jest --coverage",
|
|
"test-watch": "jest --watch",
|
|
"commit": "git-cz",
|
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lyndseybrowning/trie-prefix-tree"
|
|
},
|
|
"keywords": [
|
|
"javascript",
|
|
"trie",
|
|
"words"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"author": "Lyndsey Browning <lbrowning86@gmail.com> (http://lyndseyb.co.uk/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/lyndseybrowning/trie-prefix/issues"
|
|
},
|
|
"homepage": "https://github.com/lyndseybrowning/trie-prefix#readme",
|
|
"devDependencies": {
|
|
"babel-cli": "^6.22.2",
|
|
"babel-core": "^6.22.1",
|
|
"babel-jest": "18.0.0",
|
|
"babel-plugin-add-module-exports": "0.2.1",
|
|
"babel-plugin-array-includes": "2.0.3",
|
|
"babel-plugin-transform-object-rest-spread": "^6.22.0",
|
|
"babel-preset-env": "1.1.8",
|
|
"babel-preset-es2015": "^6.22.0",
|
|
"codecov": "1.0.1",
|
|
"commitizen": "2.9.6",
|
|
"cz-conventional-changelog": "1.2.0",
|
|
"eslint": "^3.15.0",
|
|
"ghooks": "2.0.0",
|
|
"jest": "^18.1.0",
|
|
"rimraf": "^2.5.4",
|
|
"semantic-release": "^6.3.2"
|
|
},
|
|
"jest": {
|
|
"coverageDirectory": "./coverage",
|
|
"collectCoverage": true,
|
|
"transform": {
|
|
".*": "<rootDir>/node_modules/babel-jest"
|
|
},
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"es6"
|
|
]
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "node_modules/cz-conventional-changelog"
|
|
},
|
|
"ghooks": {
|
|
"pre-commit": "npm run lint && npm run test"
|
|
}
|
|
}
|
|
} |