|
8 | 8 | "types": "lib/index.d.ts", |
9 | 9 | "scripts": { |
10 | 10 | "develop": "tsc -w", |
11 | | - "build": "tsc -p tsconfig.prod.json", |
12 | | - "lint": "tslint --fix -p . -c tslint.json", |
13 | 11 | "test": "jest --coverage", |
14 | 12 | "test:tdd": "jest --watch", |
15 | | - "prepublishOnly": "yarn build" |
| 13 | + "prepack": "tsc" |
16 | 14 | }, |
17 | 15 | "dependencies": { |
18 | 16 | "hasha": "^5.0.0", |
19 | 17 | "posthtml": "^0.12.0" |
20 | 18 | }, |
21 | 19 | "devDependencies": { |
22 | | - "@commitlint/cli": "^8.2.0", |
23 | | - "@commitlint/config-conventional": "^8.2.0", |
24 | | - "@types/jest": "^25.1.1", |
25 | | - "husky": "^4.2.1", |
26 | | - "jest": "^25.1.0", |
27 | | - "prettier": "^1.18.2", |
28 | | - "pretty-quick": "^2.0.0", |
29 | | - "ts-jest": "^25.2.1", |
30 | | - "tslint": "^6.0.0", |
31 | | - "tslint-config-prettier": "^1.18.0", |
| 20 | + "@types/jest": "^25.2.1", |
| 21 | + "jest": "^25.5.4", |
| 22 | + "ts-jest": "^25.4.0", |
32 | 23 | "typescript": "^3.6.3" |
33 | 24 | }, |
34 | | - "husky": { |
35 | | - "hooks": { |
36 | | - "pre-commit": "yarn lint && pretty-quick --staged", |
37 | | - "pre-push": "yarn test", |
38 | | - "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" |
39 | | - } |
40 | | - }, |
41 | | - "prettier": { |
42 | | - "tabWidth": 2, |
43 | | - "semi": true, |
44 | | - "singleQuote": true |
45 | | - }, |
46 | 25 | "jest": { |
47 | 26 | "preset": "ts-jest", |
48 | 27 | "watchPathIgnorePatterns": [ |
49 | 28 | "<rootDir>/src/tests/__fixtures__" |
50 | 29 | ] |
51 | 30 | }, |
52 | | - "commitlint": { |
53 | | - "extends": [ |
54 | | - "@commitlint/config-conventional" |
55 | | - ] |
56 | | - }, |
57 | 31 | "repository": { |
58 | 32 | "type": "git", |
59 | 33 | "url": "https://github.com/metonym/posthtml-hash.git" |
60 | 34 | }, |
61 | 35 | "homepage": "https://github.com/metonym/posthtml-hash", |
| 36 | + "bugs": "https://github.com/metonym/posthtml-hash/issues", |
62 | 37 | "keywords": [ |
63 | 38 | "posthtml", |
64 | 39 | "posthtml plugin", |
|
68 | 43 | ], |
69 | 44 | "files": [ |
70 | 45 | "lib" |
71 | | - ], |
72 | | - "bugs": "https://github.com/metonym/posthtml-hash/issues" |
| 46 | + ] |
73 | 47 | } |
0 commit comments