forked from ionic-team/stencil-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "@stencil/redux",
"version": "0.0.4",
"description": "Stencil Redux - A simple redux-connector for Stencil-built web components",
"main": "dist/stencilredux.js",
"browser": "dist/stencilredux.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build",
"dev": "sd concurrent \"stencil build --dev --watch\" \"stencil-dev-server\" ",
"deploy": "np",
"serve": "stencil-dev-server",
"start": "npm run dev",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/stencil-redux.git"
},
"devDependencies": {
"@stencil/core": "^0.6.7",
"@stencil/dev-server": "latest",
"@stencil/utils": "latest",
"@types/jest": "^20.0.8",
"jest": "^20.0.4",
"np": "^2.16.0",
"ts-jest": "^20.0.10"
},
"peerDependencies": {
"redux": "^3.7.2"
},
"author": "Ionic Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/stencil-redux"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*(test|spec)\\.(ts|tsx)$"
},
"homepage": "https://github.com/ionic-team/stencil-redux"
}