cspell
Version:
A Spelling Checker for Code!
133 lines (132 loc) • 3.78 kB
JSON
{
"name": "cspell",
"version": "3.0.1",
"description": "A Spelling Checker for Code!",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"cspell": "./dist/app.js"
},
"files": [
"dist/**",
"src/**",
"!**/*.test.*",
"!**/*.spec.*",
"config/**"
],
"scripts": {
"clean": "rimraf ./dist",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"lint-travis": "tslint \"src/**/*.ts\"",
"build": "npm run compile",
"clean-build": "npm run clean && npm run build && npm run build-dictionaries",
"build-dictionaries": "npm run build_dictionaries-word-lists",
"build_dictionaries-word-lists": "node node_modules/cspell-tools/dist/app.js compile \"./dictionaries/!(words)*.txt\" -o ./dist/dictionaries/",
"compile": "tsc -p .",
"watch": "tsc --watch -p .",
"tsc": "tsc -p .",
"tscv": "tsc -v",
"coverage": "npm run generate-code-coverage",
"generate-code-coverage": "NODE_ENV=test nyc npm run test-ts",
"test-ts": "NODE_ENV=test mocha --require ts-node/register --recursive --bail \"src/**/*.test.ts\"",
"test-watch": "npm run build && mocha --require ts-node/register --watch --recursive \"src/**/*.test.ts\"",
"prepublish": "npm run lint && npm run clean-build && npm test",
"coverage-coveralls": "nyc report --reporter=text-lcov | coveralls",
"travis-coverage": "npm run generate-code-coverage && npm run coverage-coveralls",
"which": "which node && echo $PATH",
"zz": "set ZZZ=\"Hello\"",
"test-spec": "mocha --recursive \"dist/**/*.spec.js\"",
"test-unit": "mocha --recursive \"dist/**/*.test.js\"",
"test": "npm run test-unit && npm run test-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jason3S/cspell.git"
},
"keywords": [
"spell",
"checker",
"code",
"camel",
"case",
"spelling",
"spell checker",
"spelling checker",
"lint"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jason3S/cspell/issues"
},
"homepage": "https://github.com/Jason3S/cspell#readme",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/comment-json": "^1.1.1",
"@types/configstore": "^2.1.1",
"@types/fs-extra": "^5.0.2",
"@types/glob": "^5.0.35",
"@types/lorem-ipsum": "^1.0.2",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.0",
"@types/node": "^8.10.10",
"@types/xregexp": "^3.0.29",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cspell-dict-nl-nl": "^1.0.10",
"cspell-tools": "^3.0.1",
"lorem-ipsum": "^1.0.4",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"rimraf": "^2.6.2",
"ts-node": "^6.0.1",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.15.1",
"comment-json": "^1.1.3",
"configstore-fork": "^3.1.6",
"cspell-dict-cpp": "^1.1.6",
"cspell-dict-django": "^1.0.2",
"cspell-dict-en-gb": "^1.1.2",
"cspell-dict-en_us": "^1.2.5",
"cspell-dict-golang": "^1.1.3",
"cspell-dict-latex": "^1.0.1",
"cspell-dict-php": "^1.0.2",
"cspell-dict-python": "^1.0.3",
"cspell-dict-rust": "^1.0.0",
"cspell-lib": "^3.0.1",
"cspell-trie": "^3.0.2",
"fs-extra": "^5.0.0",
"gensequence": "^2.1.1",
"glob": "^7.1.2",
"minimatch": "^3.0.4",
"rxjs": "^6.0.0",
"vscode-uri": "^1.0.3",
"xregexp": "^4.1.1"
},
"engines": {
"node": ">=8.0.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts",
"src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
]
}
}