forked from ionic-team/stencil-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "@boldpenguin/stencil-redux",
"version": "0.2.2",
"description": "Stencil Redux - A simple redux-connector for Stencil-built web components",
"main": "dist/index.js",
"module": "dist/esm/es5/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build",
"dev": "stencil build --es5 --dev --watch --serve --no-open --debug",
"deploy": "np",
"start": "npm run dev",
"test": "jest",
"lint": "tslint --config tslint.json --project tsconfig.json"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/BoldPenguin/stencil-redux.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@stencil/core": "^0.18.0",
"@types/jest": "^25.0.0",
"conventional-changelog-conventionalcommits": "^4.3.0",
"husky": "^4.2.1",
"jest": "^25.0.0",
"np": "^5.0.0",
"redux": "^4.0.1",
"semantic-release": "^17.0.8",
"ts-jest": "^25.1.0",
"tslint": "^5.12.1",
"tslint-ionic-rules": "0.0.21"
},
"peerDependencies": {
"redux": "^4.0.4"
},
"author": "Ionic Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/BoldPenguin/stencil-redux"
},
"homepage": "https://github.com/BoldPenguin/stencil-redux"
}