-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 2.98 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "device-bars",
"version": "1.1.2",
"description": "Add the appropriate device status bar or navigation bar to your ionic app and bring your mocks/prototypes/screenshots to the next level.",
"keywords": [
"android",
"bar",
"battery",
"cellular",
"component",
"device",
"home",
"indicator",
"ionic",
"ios",
"mobile",
"mockup",
"navigation",
"navigationbar",
"playwright",
"prototype",
"puppeteer",
"screenshot",
"status",
"statusbar",
"stencil",
"stenciljs",
"symbol",
"typescript",
"web",
"web-component",
"wifi"
],
"homepage": "https://github.com/SimonGolms/device-bars.git",
"license": "MIT",
"author": {
"name": "Simon Golms",
"email": "[email protected]",
"url": "https://gol.ms"
},
"repository": {
"type": "git",
"url": "https://github.com/SimonGolms/device-bars.git"
},
"bugs": {
"url": "https://github.com/SimonGolms/device-bars/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/device-bars/device-bars.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"build:ci": "stencil build",
"lint": "eslint src/**/*{.ts,.tsx}",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test:watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"repair": "rm -rf node_modules build loader www packages-lock.json && npm install",
"release": "dotenv -- bash -c \"npm run build && semantic-release --no-ci\"",
"release:dry-run": "dotenv -- bash -c \"npm run build && semantic-release --no-ci -d\"",
"release:ci": "npm run build:ci && semantic-release",
"release:ci:dry-run": "npm run build:ci && semantic-release -d"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.6",
"@stencil/core": "^1.13.0",
"@stencil/eslint-plugin": "^0.3.1",
"@stencil/sass": "^1.3.1",
"@types/jest": "24.9.1",
"@types/puppeteer": "2.0.1",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"dotenv-cli": "^3.1.0",
"eslint": "^7.1.0",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"puppeteer": "2.1.1",
"semantic-release": "^17.0.7"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}