forked from iopipe/iopipe-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
138 lines (138 loc) · 3.87 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@iopipe/scripts",
"version": "0.0.0-semantically-released",
"description": "CLI for common scripts for IOpipe projects",
"engines": {
"node": ">= 6.10",
"npm": ">= 3.10"
},
"bin": {
"iopipe-scripts": "dist/index.js"
},
"scripts": {
"add-contributor": "node src contributors add",
"commit": "node src commit",
"build": "node src build",
"format": "node src format",
"lint": "node src lint",
"precommit": "node src precommit",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"release": "node src release",
"test": "node src test",
"test:update": "node src test --updateSnapshot",
"validate": "node src validate"
},
"files": [
"dist",
"babel.js",
"eslint.js",
"config.js",
"prettier.js",
"jest.js"
],
"keywords": [
"scripts"
],
"author": "IOpipe <[email protected]> (https://iopipe.com/)",
"license": "MIT",
"dependencies": {
"@iopipe/eslint-config-iopipe": "1.0.2",
"@ljharb/eslint-config": "^12.2.1",
"@semantic-release/github": "^2.2.3",
"@semantic-release/npm": "^2.4.0",
"all-contributors-cli": "^4.9.1",
"arrify": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-macros": "^1.2.0",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-minify-dead-code-elimination": "^0.2.0",
"babel-plugin-module-resolver": "2.7.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"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.10",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"commitizen": "^2.9.6",
"concurrently": "^3.5.1",
"cross-env": "^5.1.1",
"cross-spawn": "^5.1.0",
"cz-conventional-changelog": "^2.1.0",
"doctoc": "^1.3.0",
"eslint": "^5",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-prettier": "^2",
"get-installed-path": "^4.0.8",
"glob": "^7.1.2",
"husky": "^0.14.3",
"is-ci": "^1.0.10",
"jest": "^21.2.1",
"lint-staged": "^5.0.0",
"lodash.camelcase": "^4.3.0",
"lodash.has": "^4.5.2",
"lodash.keys": "^4.2.0",
"lodash.topairs": "^4.3.0",
"lodash.values": "^4.3.0",
"mkdirp": "^0.5.1",
"prettier": "1",
"read-pkg-up": "^3.0.0",
"resolve": "^1.5.0",
"rimraf": "^2.6.2",
"rollup": "^0.51.8",
"rollup-plugin-babel": "^3.0.2",
"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-uglify": "^2.0.1",
"semantic-release": "^11.0.2",
"which": "^1.3.0",
"yargs-parser": "^8.0.0"
},
"eslintConfig": {
"extends": [
"@iopipe/eslint-config-iopipe",
"@iopipe/eslint-config-iopipe/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/iopipe/iopipe-scripts.git"
},
"bugs": {
"url": "https://github.com/iopipe/iopipe-scripts/issues"
},
"homepage": "https://github.com/iopipe/iopipe-scripts#readme",
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"jest-in-case": "^1.0.2",
"precommit": "^1.2.2",
"slash": "^1.0.0"
},
"pre-commit": [
"precommit"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}