-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "@maoyan/cloudbase-adapter-bd_mp",
"version": "0.1.0",
"description": "baidu miniprogram adapter of cloudbase javascript SDK",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"scripts": {
"eslint": "eslint \"./src/*.ts\"",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "webpack && npm run build:esm",
"prepublish": "npm run eslint&&npm run build"
},
"author": "myfe <[email protected]>",
"maintainers": [
{
"name": "wangkemiao",
"email": "[email protected]"
},
{
"name": "baiweiye",
"email": "[email protected]"
},
{
"name": "gaoyingjian",
"email": "[email protected]"
},
{
"name": "guotengfei02",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"babel-loader": "^8.0.6",
"eslint": "^6.7.2",
"eslint-config-alloy": "^3.4.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@cloudbase/adapter-interface": "^0.4.0"
}
}