-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "babel-plugin-ts-nameof",
"version": "4.2.1",
"description": "nameof in TypeScript for babel.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist && tsc --b --clean",
"build": "tsc --b",
"test": "echo 'ignore'",
"dopublish": "npm run install && npm run build && echo \"Run: npm publish --otp\""
},
"keywords": [
"nameof",
"typescript",
"transforms",
"babel"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dsherret/ts-nameof.git",
"directory": "packages/babel-plugin-ts-nameof"
},
"author": "David Sherret",
"license": "MIT",
"dependencies": {
"@ts-nameof/transforms-babel": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@ts-nameof/tests-common": "^4.2.0",
"@types/babel__core": "^7.1.17",
"@types/babel__generator": "^7.6.3",
"@types/babel__template": "^7.4.1",
"@types/babel__traverse": "^7.14.2",
"@types/node": "^17.0.0",
"mocha": "^9.1.3",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}