-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
65
66
67
68
69
70
71
{
"name": "store-badge",
"version": "1.3.0",
"description": "Display App Store and/or Google Play badges on your website based on the browser.",
"browser": "build/bundle.js",
"main": "src/index.js",
"scripts": {
"test": "NODE_ENV=test jest",
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"build": "preact build --no-prerender --template src/index.ejs --no-sw --no-esm",
"dev": "preact watch --template src/index.ejs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apuyou/store-badge.git"
},
"keywords": [
"app store",
"google play",
"badge",
"download"
],
"author": "Arthur Puyou <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apuyou/store-badge/issues"
},
"homepage": "https://apuyou.github.io/store-badge/",
"devDependencies": {
"identity-obj-proxy": "^3.0.0",
"if-env": "^1.0.0",
"jest": "^27.1.1",
"node-sass": "^7.0.0",
"preact-cli": "^3.2.2",
"prettier": "^2.4.0"
},
"dependencies": {
"preact": "^10.5.14",
"preact-habitat": "^3.1.0",
"react-store-badge": "^3.0.0"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"testEnvironment": "node",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss|less)$": "identity-obj-proxy",
"^react$": "preact/compat",
"^react-dom$": "preact/compat"
},
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleDirectories": [
"node_modules",
"src"
]
}
}