UNPKG

922 BJSONView Raw
1{
2 "name": "keyu",
3 "version": "1.4.1",
4 "description": "Key utilities for everyday use",
5 "main": "index.js",
6 "scripts": {
7 "vet": "./node_modules/.bin/eslint ./",
8 "ci": "./node_modules/.bin/eslint --fix ./ && nyc npm test && nyc report --reporter=text-lcov | coveralls",
9 "test": "mocha",
10 "coverage": "nyc npm test"
11 },
12 "keywords": [
13 "utils",
14 "utilities",
15 "key"
16 ],
17 "author": "Carles Iborra",
18 "repository": "github:nerac/keyu",
19 "license": "MIT",
20 "devDependencies": {
21 "coveralls": "^3.0.3",
22 "eslint": "^5.16.0",
23 "eslint-config-prettier": "^4.1.0",
24 "eslint-plugin-prettier": "^3.0.1",
25 "husky": "^1.3.1",
26 "mocha": "^6.0.2",
27 "mocha-lcov-reporter": "^1.3.0",
28 "nyc": "^13.3.0",
29 "prettier": "1.16.4",
30 "pretty-quick": "^1.10.0"
31 },
32 "husky": {
33 "hooks": {
34 "pre-commit": "npm run vet && npm test && pretty-quick --staged"
35 }
36 }
37}