package.json 505 字节
Newer Older
1 2
{
  "name": "@next/codemod",
J
Joe Haddad 已提交
3
  "version": "10.0.6-canary.1",
4 5
  "license": "MIT",
  "dependencies": {
6 7 8 9 10 11 12
    "chalk": "4.1.0",
    "execa": "4.0.3",
    "globby": "11.0.1",
    "inquirer": "7.3.3",
    "is-git-clean": "1.1.0",
    "jscodeshift": "^0.6.4",
    "meow": "7.0.1"
13
  },
14 15 16 17
  "files": [
    "transforms/*.js",
    "bin/*.js"
  ],
18
  "scripts": {
19 20
    "prepublish": "yarn tsc -d -p tsconfig.json",
    "build": "yarn tsc -d -w -p tsconfig.json",
21
    "test": "jest"
22 23
  },
  "bin": "./bin/next-codemod.js"
24
}