package.json 946 Bytes
Newer Older
Sangjune Bae's avatar
Sangjune Bae committed
1
{
baesangjune's avatar
yarn    
baesangjune committed
2
3
4
5
6
7
8
9
  "name": "@restart/context",
  "version": "2.1.4",
  "main": "index.js",
  "module": "es/index.js",
  "types": "index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/react-restart/context"
Sangjune Bae's avatar
Sangjune Bae committed
10
  },
baesangjune's avatar
yarn    
baesangjune committed
11
12
13
14
  "author": "4Catalyzer",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
Sangjune Bae's avatar
Sangjune Bae committed
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ],
    "*.{json,css,md}": [
      "prettier --write --ignore-path .eslintignore",
      "git add"
    ]
  },
  "prettier": {
    "printWidth": 79,
    "singleQuote": true,
    "trailingComma": "all"
  },
baesangjune's avatar
yarn    
baesangjune committed
36
37
38
39
40
41
42
  "jest": {
    "roots": [
      "<rootDir>/test"
    ],
    "setupFiles": [
      "<rootDir>/test/index.js"
    ]
Sangjune Bae's avatar
Sangjune Bae committed
43
44
45
46
47
48
49
  },
  "release": {
    "extends": [
      "@4c/semantic-release-config"
    ],
    "pkgRoot": "lib"
  },
baesangjune's avatar
yarn    
baesangjune committed
50
51
52
  "peerDependencies": {
    "react": ">=16.3.2"
  }
Sangjune Bae's avatar
Sangjune Bae committed
53
}