forked from suanmei/callapp-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.03 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
{
"name": "callapp-lib",
"version": "3.5.4",
"description": "call native webview from webpage",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/type/index.d.ts",
"directories": {
"dist": "dist"
},
"files": ["dist"],
"scripts": {
"lint-eslint": "eslint --cache --ext .ts ./src",
"check-types": "tsc --noEmit",
"lint": "npm run lint-eslint & npm run check-types",
"declare-type": "tsc --emitDeclarationOnly",
"build": "npm run declare-type & rollup -c"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && git add .",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/suanmei/callapp-lib.git"
},
"keywords": ["rollup", "callapp", "schema", "scheme", "universalLink", "intent", "native", "h5"],
"author": {
"name": "suanmei",
"email": "[email protected]",
"url": "https://suanmei.github.com"
},
"license": "MIT",
"homepage": "https://github.com/suanmei/callapp-lib#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-object-assign": "^7.10.4",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.10.1",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@types/node": "^14.14.34",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-unicorn": "^20.1.0",
"husky": "^1.1.1",
"prettier": "^2.0.5",
"rollup": "^2.15.0",
"typescript": "^3.9.5"
}
}