๐Ÿ“ฆ aleclarson / ee-ts

๐Ÿ“„ package.json ยท 52 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52{
  "name": "ee-ts",
  "version": "1.0.2",
  "main": "lib/ee.js",
  "license": "MIT",
  "repository": "aleclarson/ee-ts",
  "description": "Type-safe, isomorphic event emitters",
  "files": [
    "lib",
    "src"
  ],
  "scripts": {
    "build": "tsc -p .",
    "test": "jest",
    "test:cov": "jest --coverage && codecov"
  },
  "engines": {
    "node": ">=6"
  },
  "peerDependencies": {
    "typescript": ">=3"
  },
  "devDependencies": {
    "@commitlint/cli": "7.3.2",
    "@commitlint/config-conventional": "7.3.1",
    "@sucrase/jest-plugin": "2.0.0",
    "@types/jest": "23.3.10",
    "codecov": "3.1.0",
    "husky": "1.2.1",
    "if-node-version": "1.1.1",
    "jest": "23.6.0",
    "prettier": "1.15.3",
    "pretty-quick": "2.0.1",
    "tslint": "5.11.0",
    "tslint-mango": "0.1.9",
    "typescript": "3.2.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "lint-staged": {
    "{src,spec}/**/*.ts": [
      "prettier --write",
      "tslint --fix",
      "git add"
    ]
  }
}