-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "babel-plugin-transform-uiw-import",
"version": "1.0.0",
"description": "Modular import uiw plugin for babel.",
"repository": "https://github.com/uiwjs/babel-plugin-transform-uiw-import",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"test": "jest --coverage",
"test:watch": "jest --watchAll --coverage",
"build": "babel src --out-dir lib",
"watch": "babel src --out-dir lib --verbose -w"
},
"keywords": [
"babel-plugin",
"kkt-ssr",
"uiw",
"ssr"
],
"jest": {
"bail": true,
"verbose": true,
"testMatch": [
"**/__tests__/**/*.js?(x)",
"**/?(*.)+(spec|test).js?(x)"
]
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
},
"dependencies": {
"@babel/types": "^7.7.4",
"is-valid-path": "^0.1.1"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.14.2",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-do-expressions": "7.14.0",
"@babel/plugin-proposal-export-default-from": "7.12.13",
"@babel/preset-env": "7.14.2",
"babel-core": "7.0.0-bridge.0",
"jest": "26.6.3"
},
"files": [
"lib",
"index.d.ts"
],
"author": "Kenny Wong",
"license": "MIT"
}