forked from esmbly/esmbly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
{
"name": "@esmbly/transformer-v8",
"version": "0.0.5",
"description": "An Esmbly transformer that transforms plain JavaScript files to TypeScript by using a V8 type profile that is collected while running a test suite",
"author": "Olle Lauri Boström <[email protected]> (https://github.com/ollelauribostrom)",
"homepage": "https://github.com/esmbly/esmbly",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/index.bundle.js",
"keywords": [
"esmbly",
"v8",
"type profile",
"jest",
"tape",
"jasmine",
"typescript",
"transform",
"transformer"
],
"repository": {
"type": "git",
"url": "git+https://github.com/esmbly/esmbly.git"
},
"bugs": {
"url": "https://github.com/esmbly/esmbly/issues"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"build-watch": "tsc -w"
},
"dependencies": {
"@babel/traverse": "^7.3.4",
"@babel/types": "^7.3.4",
"@esmbly/printer": "^0.0.5",
"@esmbly/types": "^0.0.5",
"@esmbly/utils": "^0.0.5",
"signal-exit": "^3.0.2",
"spawn-wrap": "^1.4.2"
},
"devDependencies": {
"@esmbly/core": "^0.0.5",
"ava": "^1.4.1",
"jasmine": "^3.3.1",
"mocha": "^6.0.2",
"tap": "^12.6.1",
"tape": "^4.10.1"
},
"peerDependencies": {
"@esmbly/core": "^0.0.1"
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"access": "public"
}
}