|
2 | 2 | "name": "array-of-objects", |
3 | 3 | "version": "0.1.0", |
4 | 4 | "description": "Useful functions to use with array of objects.", |
5 | | - "main": "lib/array-of-objects.ts", |
| 5 | + "main": "lib/array-of-objects.js", |
6 | 6 | "repository": "git@github.com:viktor-maksimov/array-of-objects.git", |
7 | 7 | "author": "viktor-maksimov <viktor.slavov.maksimov@gmail.com>", |
8 | 8 | "license": "MIT", |
9 | 9 | "private": false, |
10 | | - "keywords": ["array", "object", "unique"], |
| 10 | + "keywords": [ |
| 11 | + "array", |
| 12 | + "object", |
| 13 | + "unique" |
| 14 | + ], |
11 | 15 | "homepage": "https://github.com/viktor-maksimov/array-of-objects", |
12 | 16 | "bugs": "https://github.com/viktor-maksimov/array-of-objects/issues", |
| 17 | + "contributors": [ |
| 18 | + "Andras Serfozo <subztep@gmail.com>" |
| 19 | + ], |
13 | 20 | "scripts": { |
14 | | - "build": "babel --presets @babel/preset-typescript src/array-of-objects.ts -d lib" |
| 21 | + "build": "babel --presets @babel/preset-typescript src/array-of-objects.ts --extensions '.ts' -d ts-compiled-temp; babel --plugins @babel/plugin-transform-modules-umd ts-compiled-temp -d lib; rm -r ts-compiled-temp", |
| 22 | + "check-types": "tsc", |
| 23 | + "test": "yarn check-types; jest . --passWithNoTests", |
| 24 | + "test:coverage": "jest . --coverage", |
| 25 | + "lint": "eslint --ext .js,.ts .", |
| 26 | + "lint:debug": "eslint --debug --ext .js,.ts .", |
| 27 | + "lint:fix": "eslint --fix --ext .js,.ts ." |
15 | 28 | }, |
16 | 29 | "dependencies": {}, |
17 | 30 | "devDependencies": { |
18 | 31 | "@babel/cli": "^7.0.0", |
19 | 32 | "@babel/core": "^7.0.0", |
| 33 | + "@babel/plugin-proposal-class-properties": "^7.5.5", |
| 34 | + "@babel/plugin-proposal-object-rest-spread": "^7.5.5", |
20 | 35 | "@babel/plugin-transform-modules-umd": "^7.2.0", |
21 | | - "@babel/preset-typescript": "^7.3.3" |
| 36 | + "@babel/preset-typescript": "^7.3.3", |
| 37 | + "@types/jest": "^24.0.18", |
| 38 | + "@typescript-eslint/eslint-plugin": "^2.0.0", |
| 39 | + "@typescript-eslint/parser": "^2.0.0", |
| 40 | + "babel-jest": "^24.9.0", |
| 41 | + "eslint": "^6.2.1", |
| 42 | + "eslint-config-prettier": "^6.1.0", |
| 43 | + "eslint-config-standard": "^14.0.0", |
| 44 | + "eslint-plugin-import": "^2.18.2", |
| 45 | + "eslint-plugin-jest": "^22.15.1", |
| 46 | + "eslint-plugin-node": "^9.1.0", |
| 47 | + "eslint-plugin-prettier": "^3.1.0", |
| 48 | + "eslint-plugin-promise": "^4.2.1", |
| 49 | + "eslint-plugin-standard": "^4.0.1", |
| 50 | + "jest": "^24.9.0", |
| 51 | + "ts-jest": "^24.0.2", |
| 52 | + "typescript": "^3.6.2", |
| 53 | + "prettier": "^1.18.2" |
22 | 54 | } |
23 | 55 | } |
0 commit comments