forked from ionic-team/capacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "@capacitor/core",
"version": "3.2.0",
"description": "Capacitor: Cross-platform apps with JavaScript and the web",
"homepage": "https://capacitorjs.com",
"author": "Ionic Team <[email protected]> (https://ionic.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/capacitor.git"
},
"bugs": {
"url": "https://github.com/ionic-team/capacitor/issues"
},
"files": [
"dist/",
"types/",
"cordova.js"
],
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "types/index.d.ts",
"unpkg": "dist/capacitor.js",
"scripts": {
"build": "npm run clean && npm run transpile && npm run rollup",
"build:nativebridge": "tsc native-bridge.ts --target es2017 --moduleResolution node --outDir build && rollup --config rollup.bridge.config.js",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"rollup": "rollup --config rollup.config.js",
"transpile": "tsc",
"test": "jest",
"test.watch": "jest --watchAll",
"test.treeshaking": "node src/tests/build-treeshaking.js"
},
"dependencies": {
"tslib": "^2.1.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@types/jest": "^26.0.4",
"jest": "^26.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.21.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.0.5"
},
"jest": {
"preset": "ts-jest"
},
"publishConfig": {
"access": "public"
}
}