-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
105 lines (105 loc) · 3.26 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
{
"name": "@entria/deploy",
"description": "Entria deploy helpers",
"version": "0.0.3",
"author": {
"name": "Entria",
"email": "[email protected]",
"url": "https://github.com/entria"
},
"bin": {
"entria-deploy": "./bin/cli"
},
"dependencies": {
"@babel/polyfill": "7.12.1",
"core-js": "^3.21.1",
"execa": "4.0.2",
"regenerator-runtime": "^0.13.9",
"yargs": "17.6.2"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.12",
"@babel/node": "7.20.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-export-default-from": "7.18.10",
"@babel/plugin-proposal-export-namespace-from": "7.18.9",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-syntax-async-generators": "7.8.4",
"@babel/plugin-transform-async-to-generator": "7.20.7",
"@babel/plugin-transform-flow-strip-types": "7.19.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@types/babel-core": "6.25.7",
"@types/babel__core": "7.1.20",
"@types/babel__preset-env": "7.9.2",
"@types/eslint": "8.4.9",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/execa": "2.0.0",
"@types/find-up": "4.0.0",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.5.1",
"@types/node": "18.11.18",
"@types/temp-write": "4.0.0",
"@types/tempy": "0.3.0",
"@types/touch": "3.1.2",
"@types/yargs": "17.0.19",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"babel-eslint": "10.1.0",
"babel-jest": "28.1.3",
"eslint": "8.26.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-typescript": "0.14.0",
"find-up": "6.3.0",
"fs-extra": "10.1.0",
"jest": "28.1.0",
"jest-junit": "14.0.1",
"temp-write": "4.0.0",
"tempy": "0.5.0",
"touch": "3.1.0",
"typescript": "4.9.4"
},
"jsnext:main": "src/index.ts",
"license": "MIT",
"lint-staged": {
"*.js": [
"yarn prettier",
"eslint --fix",
"git add"
],
"*.{ts,tsx}": [
"yarn prettier",
"git add"
],
"*.yml": [
"prettier --write",
"git add"
]
},
"main": "lib/index.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entria/entria-deploy"
},
"scripts": {
"build": "rm -rf lib/* && babel src --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\" --ignore *.spec.js --out-dir lib",
"prepublish": "npm run build",
"release:major": "yarn test && npm version major && git push --follow-tags",
"release:minor": "yarn test && npm version minor && git push --follow-tags",
"release:patch": "yarn test && npm version patch && git push --follow-tags",
"shouldDeploy": "babel-node --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\" src/shouldDeploy.ts",
"test": "jest",
"test:watch": "jest --watch --coverage",
"tsc": "tsc",
"watch": "babel src --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\" --ignore *.spec.js --out-dir lib --watch"
}
}