UNPKG

3.32 kBJSONView Raw
1{
2 "name": "kcd-scripts",
3 "version": "1.1.3",
4 "description": "CLI for common scripts for my projects",
5 "engines": {
6 "node": ">= 8",
7 "npm": ">= 5"
8 },
9 "bin": {
10 "kcd-scripts": "dist/index.js"
11 },
12 "scripts": {
13 "test": "node src test",
14 "test:update": "node src test --updateSnapshot",
15 "build": "node src build",
16 "lint": "node src lint",
17 "format": "node src format",
18 "validate": "node src validate"
19 },
20 "husky": {
21 "hooks": {
22 "pre-commit": "node src pre-commit"
23 }
24 },
25 "files": [
26 "dist",
27 "babel.js",
28 "eslint.js",
29 "config.js",
30 "prettier.js",
31 "jest.js"
32 ],
33 "keywords": [],
34 "author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
35 "license": "MIT",
36 "dependencies": {
37 "@babel/cli": "^7.2.0",
38 "@babel/core": "^7.4.0",
39 "@babel/plugin-proposal-class-properties": "^7.4.0",
40 "@babel/plugin-transform-modules-commonjs": "^7.4.0",
41 "@babel/plugin-transform-runtime": "^7.4.0",
42 "@babel/preset-env": "^7.4.2",
43 "@babel/preset-flow": "^7.0.0",
44 "@babel/preset-react": "^7.0.0",
45 "@babel/runtime": "^7.4.2",
46 "arrify": "^1.0.1",
47 "babel-core": "^7.0.0-0",
48 "babel-jest": "^24.5.0",
49 "babel-plugin-macros": "^2.4.2",
50 "babel-plugin-minify-dead-code-elimination": "^0.5.0",
51 "babel-plugin-module-resolver": "^3.1.1",
52 "babel-plugin-transform-inline-environment-variables": "^0.4.0",
53 "babel-plugin-transform-react-remove-prop-types": "^0.4.21",
54 "browserslist": "^4.5.2",
55 "concurrently": "^4.1.0",
56 "cross-env": "^5.1.4",
57 "cross-spawn": "^6.0.5",
58 "doctoc": "^1.4.0",
59 "eslint": "^5.15.3",
60 "eslint-config-kentcdodds": "^14.3.1",
61 "eslint-config-prettier": "^4.1.0",
62 "glob": "^7.1.2",
63 "husky": "^1.2.0",
64 "is-ci": "^2.0.0",
65 "jest": "^24.5.0",
66 "jest-watch-typeahead": "^0.2.1",
67 "lint-staged": "^8.1.0",
68 "lodash.camelcase": "^4.3.0",
69 "lodash.has": "^4.5.2",
70 "lodash.omit": "^4.5.0",
71 "mkdirp": "^0.5.1",
72 "prettier": "^1.15.3",
73 "read-pkg-up": "^5.0.0",
74 "resolve": "^1.6.0",
75 "rimraf": "^2.6.2",
76 "rollup": "^1.7.3",
77 "rollup-plugin-babel": "^4.0.0",
78 "rollup-plugin-commonjs": "^9.2.2",
79 "rollup-plugin-json": "^4.0.0",
80 "rollup-plugin-node-builtins": "^2.1.2",
81 "rollup-plugin-node-globals": "^1.4.0",
82 "rollup-plugin-node-resolve": "^4.0.1",
83 "rollup-plugin-replace": "^2.1.1",
84 "rollup-plugin-size-snapshot": "^0.8.0",
85 "rollup-plugin-terser": "^4.0.4",
86 "semver": "^5.6.0",
87 "which": "^1.3.0",
88 "yargs-parser": "^13.0.0"
89 },
90 "eslintConfig": {
91 "extends": [
92 "kentcdodds",
93 "kentcdodds/jest"
94 ],
95 "rules": {
96 "no-process-exit": "off",
97 "import/no-dynamic-require": "off",
98 "import/no-unassigned-import": "off",
99 "no-console": "off",
100 "no-nested-ternary": "off",
101 "no-useless-catch": "off"
102 }
103 },
104 "eslintIgnore": [
105 "node_modules",
106 "coverage",
107 "dist"
108 ],
109 "repository": {
110 "type": "git",
111 "url": "https://github.com/kentcdodds/kcd-scripts.git"
112 },
113 "bugs": {
114 "url": "https://github.com/kentcdodds/kcd-scripts/issues"
115 },
116 "homepage": "https://github.com/kentcdodds/kcd-scripts#readme",
117 "devDependencies": {
118 "jest-in-case": "^1.0.2",
119 "slash": "^2.0.0"
120 }
121}