|
| 1 | +{ |
| 2 | + "name": "@maxmind/minfraud-api-node", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "Node.js API for MaxMind minFraud Score, Insights, and Factors web services", |
| 5 | + "main": "dist/index.js", |
| 6 | + "homepage": "https://github.com/maxmind/minfraud-api-node", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "https://github.com/maxmind/minfraud-api-node.git" |
| 10 | + }, |
| 11 | + "author": "MaxMind", |
| 12 | + "license": "Apache-2.0", |
| 13 | + "private": false, |
| 14 | + "keywords": [ |
| 15 | + "maxmind", |
| 16 | + "minfraud", |
| 17 | + "minfraud score", |
| 18 | + "minfraud insights", |
| 19 | + "minfraud factors" |
| 20 | + ], |
| 21 | + "files": ["dist"], |
| 22 | + "types": "dist/index.d.ts", |
| 23 | + "devDependencies": { |
| 24 | + "@types/jest": "^23.3.5", |
| 25 | + "@types/nock": "^9.3.0", |
| 26 | + "@types/node": "^10.11.6", |
| 27 | + "gh-pages": "^2.0.1", |
| 28 | + "husky": "^1.1.1", |
| 29 | + "jest": "^23.6.0", |
| 30 | + "lint-staged": "^7.3.0", |
| 31 | + "nock": "^10.0.4", |
| 32 | + "np": "^3.0.4", |
| 33 | + "prettier": "^1.14.3", |
| 34 | + "ts-jest": "^23.10.4", |
| 35 | + "tslint": "^5.11.0", |
| 36 | + "tslint-config-prettier": "^1.15.0", |
| 37 | + "tslint-eslint-rules": "^5.4.0", |
| 38 | + "typedoc": "^0.13.0", |
| 39 | + "typescript": "^3.1.2" |
| 40 | + }, |
| 41 | + "husky": { |
| 42 | + "hooks": { |
| 43 | + "pre-commit": "lint-staged" |
| 44 | + } |
| 45 | + }, |
| 46 | + "lint-staged": { |
| 47 | + "*.json": ["prettier --parser json --write", "git add"], |
| 48 | + "*.ts": [ |
| 49 | + "prettier --parser typescript --single-quote true --trailing-comma es5 --write", |
| 50 | + "tslint -p tsconfig.lint.json -t stylish", |
| 51 | + "git add" |
| 52 | + ] |
| 53 | + }, |
| 54 | + "publishConfig": { |
| 55 | + "access": "public" |
| 56 | + }, |
| 57 | + "scripts": { |
| 58 | + "build": "rimraf dist && tsc", |
| 59 | + "build:docs": "rimraf docs && typedoc --out docs --exclude \"**/*.spec.ts\" --mode file --readme README.md", |
| 60 | + "deploy:docs": "gh-pages -d docs", |
| 61 | + "lint": "tslint -p ./tsconfig.lint.json -t stylish", |
| 62 | + "prettier:ts": "prettier --parser typescript --single-quote true --trailing-comma es5 --write 'src/**/*.ts'", |
| 63 | + "prettier:ci": "prettier --parser typescript --single-quote true --trailing-comma es5 --list-different 'src/**/*.ts'", |
| 64 | + "prettier:json": "prettier --parser json --write '**/*.json'", |
| 65 | + "release": "yarn build && np", |
| 66 | + "test": "jest", |
| 67 | + "test:watch": "jest --watch", |
| 68 | + "version": "yarn build:docs && yarn deploy:docs" |
| 69 | + }, |
| 70 | + "dependencies": {} |
| 71 | +} |
0 commit comments