|
| 1 | +{ |
| 2 | + "name": "@fresha/json-pointer", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "Implementation of the JSON Pointer specification", |
| 5 | + "main": "build/index.js", |
| 6 | + "types": "build/index.d.ts", |
| 7 | + "scripts": { |
| 8 | + "build": "tsc", |
| 9 | + "build:watch": "tsc --watch", |
| 10 | + "check": "run-s lint test", |
| 11 | + "check:fix": "run-s lint:fix test", |
| 12 | + "clean": "rimraf ./build", |
| 13 | + "eslint": "eslint ./src", |
| 14 | + "eslint:fix": "eslint ./src --fix", |
| 15 | + "lint": "run-s eslint typecheck", |
| 16 | + "lint:fix": "run-s eslint:fix typecheck", |
| 17 | + "prebuild": "npm run clean", |
| 18 | + "prebuild:watch": "npm run clean", |
| 19 | + "test": "jest", |
| 20 | + "typecheck": "tsc --noEmit" |
| 21 | + }, |
| 22 | + "files": [ |
| 23 | + "build/", |
| 24 | + "package.json", |
| 25 | + "LICENSE", |
| 26 | + "README.md" |
| 27 | + ], |
| 28 | + "keywords": [ |
| 29 | + "JSON", |
| 30 | + "JSON pointer" |
| 31 | + ], |
| 32 | + "author": "Fresha Engineering", |
| 33 | + "contributors": [ |
| 34 | + { |
| 35 | + "name": "Andriy Mykulyak", |
| 36 | + "email": "andriy@fresha.com", |
| 37 | + "url": "https://github.com/mykulyak" |
| 38 | + } |
| 39 | + ], |
| 40 | + "maintainers": [ |
| 41 | + { |
| 42 | + "name": "Andriy Mykulyak", |
| 43 | + "email": "andriy@fresha.com", |
| 44 | + "url": "https://github.com/mykulyak" |
| 45 | + } |
| 46 | + ], |
| 47 | + "license": "MIT", |
| 48 | + "devDependencies": { |
| 49 | + "@fresha/api-tools-core": "0.1.0", |
| 50 | + "@fresha/eslint-config": "0.1.0", |
| 51 | + "@fresha/jest-config": "0.1.0", |
| 52 | + "@fresha/typescript-config": "0.1.0", |
| 53 | + "typescript": "^4.7.2" |
| 54 | + } |
| 55 | +} |
0 commit comments