UNPKG

1.44 kBJSONView Raw
1{
2 "name": "keyu",
3 "version": "2.2.0",
4 "description": "Key utilities for everyday use",
5 "main": "index.js",
6 "scripts": {
7 "lint": "./node_modules/standard/bin/cmd.js ./ && ./node_modules/.bin/eslint --fix ./",
8 "fmt": "./node_modules/prettier/bin-prettier.js *.js */**.js --write",
9 "ci": "NODE_ENV=test ./node_modules/.bin/eslint --fix ./ && nyc npm test && nyc report --reporter=text-lcov | coveralls",
10 "test": "NODE_ENV=test nyc mocha",
11 "doc": "jsdoc -c .jsdoc.js .",
12 "coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha"
13 },
14 "keywords": [
15 "utils",
16 "fp",
17 "conversions",
18 "async",
19 "types",
20 "key"
21 ],
22 "author": "Carles Iborra",
23 "repository": "github:nerac/keyu",
24 "license": "MIT",
25 "devDependencies": {
26 "coveralls": "^3.0.3",
27 "eslint": "^5.16.0",
28 "eslint-config-prettier": "^4.1.0",
29 "eslint-plugin-prettier": "^3.0.1",
30 "husky": "^1.3.1",
31 "jsdoc": "^3.6.3",
32 "jsdoc-baseline": "^0.1.1",
33 "lint-staged": "^8.1.5",
34 "mocha": "^6.1.4",
35 "mocha-lcov-reporter": "^1.3.0",
36 "nyc": "^14.1.1",
37 "prettier": "1.16.4",
38 "pretty-quick": "^1.10.0",
39 "standard": "^12.0.1"
40 },
41 "husky": {
42 "hooks": {
43 "pre-commit": "lint-staged"
44 }
45 },
46 "lint-staged": {
47 "*Test.js": [
48 "npm test"
49 ],
50 "*.js": [
51 "npm run lint",
52 "npm run doc",
53 "pretty-quick --staged",
54 "git add"
55 ]
56 }
57}