UNPKG

2.7 kBJSONView Raw
1{
2 "name": "gd-scripts",
3 "version": "1.2.0",
4 "main": "index.js",
5 "author": "Gabriel Duarte <gabrielqduarte@gmail.com> (https://github.com/GabrielDuarteM/)",
6 "license": "MIT",
7 "description": "CLI for common scripts for my projects",
8 "scripts": {
9 "scripts": "ts-node -T src",
10 "start": "ts-node -T src start",
11 "build": "ts-node -T src build",
12 "lint": "ts-node -T src lint",
13 "pretest": "yarn build",
14 "test": "ts-node -T src/test",
15 "typecheck": "ts-node -T src typecheck",
16 "ci": "ts-node -T src ci",
17 "release": "semantic-release"
18 },
19 "bin": {
20 "gd-scripts": "build/index.js"
21 },
22 "files": [
23 "build",
24 "babel.js",
25 "eslint.js",
26 "prettier.js",
27 "semver.js"
28 ],
29 "resolutions": {
30 "babel-core": "^7.0.0-bridge.0"
31 },
32 "repository": {
33 "type": "git",
34 "url": "https://github.com/gabrielduartem/gd-scripts.git"
35 },
36 "bugs": {
37 "url": "https://github.com/gabrielduartem/gd-scripts/issues"
38 },
39 "dependencies": {
40 "@babel/cli": "^7.0.0-rc.1",
41 "@babel/core": "^7.0.0-rc.1",
42 "@babel/plugin-proposal-class-properties": "^7.0.0-rc.1",
43 "@babel/plugin-proposal-object-rest-spread": "^7.0.0-rc.1",
44 "@babel/plugin-transform-modules-commonjs": "^7.0.0-rc.1",
45 "@babel/preset-env": "^7.0.0-rc.1",
46 "@babel/preset-react": "^7.0.0-rc.1",
47 "@babel/preset-typescript": "^7.0.0-rc.1",
48 "arrify": "^1.0.1",
49 "babel-core": "^7.0.0-bridge.0",
50 "babel-plugin-minify-dead-code-elimination": "^0.4.3",
51 "chalk": "^2.4.1",
52 "cross-spawn": "^6.0.5",
53 "eslint": "^5.2.0",
54 "eslint-config-prettier": "^3.0.1",
55 "eslint-plugin-prettier": "^2.6.2",
56 "eslint-plugin-typescript": "^0.12.0",
57 "glob": "^7.1.2",
58 "is-ci": "^1.1.0",
59 "jest": "^23.5.0",
60 "lodash.has": "^4.5.2",
61 "mkdirp": "^0.5.1",
62 "prettier": "^1.14.0",
63 "read-pkg-up": "^4.0.0",
64 "rimraf": "^2.6.2",
65 "simple-git": "^1.96.0",
66 "typescript": "^3.0.1",
67 "typescript-eslint-parser": "^18.0.0",
68 "which": "^1.3.1",
69 "yargs-parser": "^10.1.0"
70 },
71 "devDependencies": {
72 "@types/arrify": "^1.0.4",
73 "@types/chalk": "^2.2.0",
74 "@types/cross-spawn": "^6.0.0",
75 "@types/fs-extra": "^5.0.4",
76 "@types/glob": "^5.0.35",
77 "@types/is-ci": "^1.1.0",
78 "@types/lodash.has": "^4.5.4",
79 "@types/mkdirp": "^0.5.2",
80 "@types/node": "^10.7.1",
81 "@types/read-pkg-up": "^3.0.1",
82 "@types/rimraf": "^2.0.2",
83 "@types/which": "^1.3.1",
84 "eslint-plugin-import": "^2.14.0",
85 "fs-extra": "^7.0.0",
86 "semantic-release": "^15.9.8",
87 "ts-node": "^7.0.1"
88 },
89 "peerDependencies": {
90 "eslint-plugin-import": "^2.13.0",
91 "eslint-plugin-prettier": "^2.6.2"
92 }
93}