UNPKG

concordance-comparator

Version:

- `npm install` - install dependencies - `npm test` - run tests - `npm run compile` - compile your code into the `lib/` folder

41 lines (40 loc) 1.06 kB
{ "name": "concordance-comparator", "version": "0.1.0", "description": "", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "typings": "dist/cjs/index.d.ts", "repository": "kghost/concordance-comparator", "author": "Zang MingJie <zealot0630@gmail.com>", "license": "GPLv3", "scripts": { "build": "npm run build:cjs && npm run build:esm", "build:cjs": "tsc", "build:esm": "tsc -p tsconfig.esm.json", "lint": "eslint . --ignore-path .gitignore", "fix": "npm run lint -- --fix", "test": "ava test/**/*.test.js", "coverage": "nyc npm test", "prepublishOnly": "npm run build", "pretest": "npm run build" }, "keywords": [ "concordance", "comparator", "typescript", "node", "modules" ], "devDependencies": { "@types/node": "^10.12.15", "ava": "^1.0.1", "babel-preset-es2015": "^6.24.1", "eslint": "^5.10.0", "tslint": "^5.12.0", "typescript": "^3.2.2" }, "dependencies": { "concordance": "^4.0.0" } }