-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 968 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
39
40
41
42
{
"name": "typescript-transform-macros",
"version": "1.1.1",
"description": "Typescript Transform Macros",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.11",
"jest": "^24.5.0",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"directories": {
"test": "tests"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/LeDDGroup/typescript-transform-macros.git"
},
"bugs": {
"url": "https://github.com/LeDDGroup/typescript-transform-macros/issues"
},
"preferDev": true,
"homepage": "https://github.com/LeDDGroup/typescript-transform-macros#readme"
}