forked from kentcdodds/kcd-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.03 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "kcd-scripts",
"version": "0.0.0-semantically-released",
"description": "CLI for common scripts for my projects",
"engines": {
"node": ">= 8",
"npm": ">= 5"
},
"bin": {
"kcd-scripts": "dist/index.js"
},
"scripts": {
"add-contributor": "node src contributors add",
"test": "node src test",
"test:update": "node src test --updateSnapshot",
"build": "node src build",
"lint": "node src lint",
"format": "node src format",
"validate": "node src validate",
"precommit": "node src precommit"
},
"files": [
"dist",
"babel.js",
"eslint.js",
"config.js",
"prettier.js",
"jest.js"
],
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"all-contributors-cli": "^4.10.1",
"arrify": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-jest": "^22.0.4",
"babel-macros": "^1.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-minify-dead-code-elimination": "^0.2.0",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-inline-environment-variables": "^0.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"cross-env": "^5.1.3",
"cross-spawn": "^5.1.0",
"doctoc": "^1.3.0",
"eslint": "^4.14.0",
"eslint-config-kentcdodds": "^13.0.1",
"eslint-config-prettier": "^2.9.0",
"glob": "^7.1.2",
"husky": "^0.14.3",
"is-ci": "^1.1.0",
"jest": "^22.0.4",
"lint-staged": "^6.0.0",
"lodash.camelcase": "^4.3.0",
"lodash.has": "^4.5.2",
"lodash.omit": "^4.5.0",
"mkdirp": "^0.5.1",
"prettier": "^1.9.2",
"read-pkg-up": "^3.0.0",
"resolve": "^1.5.0",
"rimraf": "^2.6.2",
"rollup": "^0.53.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"which": "^1.3.0",
"yargs-parser": "^8.1.0"
},
"eslintConfig": {
"extends": ["kentcdodds", "kentcdodds/jest"],
"rules": {
"no-process-exit": "off",
"import/no-dynamic-require": "off",
"import/no-unassigned-import": "off",
"no-console": "off",
"no-nested-ternary": "off"
}
},
"eslintIgnore": ["node_modules", "coverage", "dist"],
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/kcd-scripts.git"
},
"bugs": {
"url": "https://github.com/kentcdodds/kcd-scripts/issues"
},
"homepage": "https://github.com/kentcdodds/kcd-scripts#readme",
"devDependencies": {
"jest-in-case": "^1.0.2",
"slash": "^1.0.0"
}
}