-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.99 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
72
73
74
75
76
77
{
"name": "install-prompt-banner",
"version": "0.0.6",
"description": "This is a small library for handling install Banner for Progressive Web Apps(PWA)",
"main": "lib/install-prompt-banner.js",
"scripts": {
"build": "webpack --env dev && webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "jest",
"test:ci": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackbing/install-prompt-banner.git"
},
"keywords": [
"PWA",
"progressive",
"install",
"prompt",
"banner",
"add",
"to",
"homescreen"
],
"author": "Bingo Yang",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackbing/install-prompt-banner/issues"
},
"homepage": "https://github.com/blackbing/install-prompt-banner",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.13.1",
"eslint-loader": "^1.9.0",
"jest": "^22.2.2",
"jest-localstorage-mock": "^2.2.0",
"mocha": "^4.0.1",
"webpack": "^3.10.0",
"yargs": "^10.0.3"
},
"directories": {
"lib": "lib"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!**/__mocks__/**",
"!**/__tests__/**"
],
"setupFiles": [
"jest-localstorage-mock",
"<rootDir>/config/jest/setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|docs|node_modules)[/\\\\]"
],
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"testRegex": "/__tests__/.*\\.(test|spec)\\.js$"
}
}