-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.56 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
{
"name": "concurrently.macro",
"version": "0.1.0",
"types": "./index.d.ts",
"main": "src/index.ts",
"publishConfig": {
"main": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cometkim/concurrently.macro.git"
},
"author": {
"name": "Hyeseong Kim",
"email": "hey@hyeseong.kim"
},
"license": "MIT",
"keywords": [
"babel",
"babel-plugin",
"babel-plugin-macros",
"precompile",
"promise",
"async"
],
"files": [
"index.js",
"machine.js",
"utils.js",
"index.d.ts"
],
"scripts": {
"prepack": "yarn build",
"test": "jest",
"build": "babel src -d . --extensions .ts"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"babel-plugin-macros": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/types": "^7.16.7",
"@types/babel-plugin-macros": "^2.8.5",
"@types/babel-plugin-tester": "^9.0.4",
"@types/babel__core": "^7.1.18",
"@types/babel__template": "^7.4.1",
"@types/babel__traverse": "^7.14.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.6",
"@yarnpkg/sdks": "^2.6.0-rc.1",
"babel-jest": "^27.4.5",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-tester": "^10.1.0",
"concurrently": "^6.5.1",
"jest": "^27.4.5",
"typescript": "^4.5.4"
},
"dependencies": {
"@babel/template": "^7.16.7",
"@babel/traverse": "^7.16.7",
"@xstate/fsm": "^1.6.3"
}
}