-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.44 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.44 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
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
78
79
80
81
{
"name": "mobile-debug",
"version": "0.5.0",
"description": "Mobile debug UI helper",
"main": "dist/index.js",
"scripts": {
"build": "npm-run-all --parallel build:* build:prod:*",
"build:default": "rollup -c",
"build:prod:default": "NODE_ENV=production rollup -c",
"postbuild:default": "prettier --write dist/index.js",
"build:touch": "rollup -c --environment version:touch",
"build:prod:touch": "NODE_ENV=production rollup -c --environment version:touch",
"postbuild:touch": "prettier --write dist/touch/index.js",
"preserve": "rimraf tests/src && cpy 'demo/**/*.*' tests/src && cpy 'dist/**/*.js' tests/src --parents",
"serve": "http-server ./tests/src -p 8091",
"pretest": "eslint 'src/**/*.js'",
"test": "node tests/browserstack/local.runner.js -c tests/config/browserstack.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iGitScor/mobile-debug.git"
},
"keywords": [
"mobile",
"debug",
"console",
"error"
],
"author": "iGitScor <sebastien.correaud@gmail.com> (http://iscor.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iGitScor/mobile-debug/issues"
},
"homepage": "https://github.com/iGitScor/mobile-debug#readme",
"files": [
"dist/*",
"src/*"
],
"browserslist": [
"last 2 version",
"> 1%",
"Android >= 4",
"ChromeAndroid >= 57",
"FirefoxAndroid >= 52",
"Blackberry 10",
"ExplorerMobile >= 10",
"iOS >= 5",
"OperaMobile >= 37"
],
"devDependencies": {
"babel-eslint": "^8.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.4.0",
"browserstack-local": "^1.3.0",
"cpy-cli": "^1.0.1",
"cssnano": "^3.10.0",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.0",
"eslint-plugin-react": "^7.0.0",
"http-server": "^0.10.0",
"nightwatch": "^0.9.15",
"npm-run-all": "^4.0.2",
"postcss-url": "^7.1.2",
"prettier": "^1.2.2",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^0.5.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.0"
},
"optionalDependencies": {
"ua-npmscript-notifier": "^0.2"
}
}