forked from kimamula/ts-transformer-keys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 917 Bytes
/
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
{
"name": "ts-transformer-keys",
"version": "0.4.3",
"description": "A TypeScript custom transformer which enables to obtain keys of given type.",
"scripts": {
"prepare": "tsc",
"prepublishOnly": "npm test",
"test": "node test/compile && mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kimamula/ts-transformer-keys.git"
},
"keywords": [
"TypeScript"
],
"author": "kimamula",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimamula/ts-transformer-keys/issues"
},
"files": [
"index.js",
"index.d.ts",
"transformer.js",
"transformer.ts"
],
"homepage": "https://github.com/kimamula/ts-transformer-keys#readme",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"mocha": "^8.2.1",
"typescript": "^3.9.5"
},
"peerDependencies": {
"typescript": ">=2.4.1"
}
}