-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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": "web-manifest-reader",
"version": "1.2.2",
"description": "A reader for reading web manifest file data.",
"main": "dist/index.js",
"scripts": {
"watch": "webpack --watch",
"build": "webpack",
"prettier": "prettier \"src/**/*.ts\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easy-pwa/web-manifest-reader.git"
},
"keywords": [
"pwa",
"manifest",
"web",
"reader"
],
"files": [
"dist"
],
"typings": "dist/src/index.d.ts",
"author": "Adrien Peyre",
"license": "ISC",
"bugs": {
"url": "https://github.com/easy-pwa/web-manifest-reader/issues"
},
"homepage": "https://github.com/easy-pwa/web-manifest-reader#readme",
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@types/node": "^12.12.47",
"babel-loader": "^8.1.0",
"prettier": "^1.19.1",
"terser-webpack-plugin": "^2.3.7",
"ts-loader": "^6.2.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
]
}
}