-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.5 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
{
"name": "babel-plugin-transform-typescript-metadata",
"version": "0.3.2",
"description": "Babel plugin to emit decorator metadata like typescript compiler",
"main": "lib/plugin.js",
"types": "lib/plugin.d.ts",
"repository": "https://github.com/leonardfactory/babel-plugin-transform-typescript-metadata.git",
"author": "Leonardo Ascione <[email protected]>",
"license": "MIT",
"files": [
"lib/"
],
"keywords": [
"babel",
"babel-plugin",
"babel-typescript",
"decorators",
"reflect-metadata"
],
"scripts": {
"dev": "babel src -w -d lib -x \".ts\"",
"build": "yarn build:lib && yarn build:types",
"prebuild:lib": "rimraf lib",
"build:lib": "babel src -d lib -x \".ts\"",
"build:types": "tsc --emitDeclarationOnly",
"check-types": "tsc --noEmit",
"release": "yarn test && yarn build && release-it",
"test": "jest --forceExit",
"test:dev": "jest --watch",
"test:ci": "jest --ci --runInBand --coverage --forceExit"
},
"husky": {
"hooks": {
"commit-msg": "emoji-commit-lint"
}
},
"release-it": {
"git": {
"tagName": "v${version}",
"commitMessage": "🔖 v${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "@favoloso/emoji",
"infile": "CHANGELOG.md"
}
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@babel/template": "^7.6.0",
"@babel/traverse": "^7.6.4",
"@babel/types": "^7.6.3",
"@favoloso/conventional-changelog-emoji": "^0.10.0",
"@release-it/conventional-changelog": "^1.1.0",
"@types/jest": "^27.4.1",
"babel-test": "^0.2.3",
"conventional-changelog-cli": "^2.0.25",
"husky": "^4.2.3",
"jest": "^27.5.1",
"jest-file-snapshot": "^0.5.0",
"release-it": "13.7.1",
"rimraf": "^3.0.2",
"typescript": "^3.6.4"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {
"@babel/core": "^7",
"@babel/traverse": "^7"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": false
},
"@babel/traverse": {
"optional": true
}
}
}