forked from GoogleChromeLabs/bubblewrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.23 KB
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": "@bubblewrap/core",
"version": "1.3.1",
"description": "Core Library to generate, build and sign TWA projects",
"scripts": {
"build": "tsc",
"lint": "eslint \"src/**/*.{js,ts}\"",
"test": "tsc && jasmine --config=jasmine.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"twa",
"trusted-web-activities",
"pwa",
"progressive-web-apps",
"android"
],
"files": [
"dist/lib",
"dist/index.d.ts",
"dist/index.js",
"template_project"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChromeLabs/bubblewrap.git"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@types/color": "^3.0.0",
"@types/extract-zip": "^1.6.2",
"@types/inquirer": "^6.5.0",
"@types/jasmine": "^3.5.10",
"@types/lodash.template": "^4.4.6",
"@types/node": "^12.12.39",
"@types/node-fetch": "^2.5.7",
"@types/tar": "^4.0.3",
"@types/valid-url": "^1.0.3",
"@types/sharp": "^0.25.0",
"color": "^3.1.2",
"extract-zip": "^1.7.0",
"inquirer": "^7.0.4",
"sharp": "^0.23.2",
"lodash.template": "^4.5.0",
"node-fetch": "^2.6.0",
"tar": "^6.0.2",
"valid-url": "^1.0.9"
}
}