-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.97 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
{
"name": "@rbmh-design-system/vue-output-target",
"version": "0.8.5",
"description": "Vue output target for @stencil/core components.",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"vue-component-lib/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf ./dist",
"build": "tsc && npm run rollup",
"watch": "tsc --watch",
"rollup": "rollup -c",
"version": "npm run build",
"prettier": "npm run prettier.base -- --write",
"prettier.base": "prettier \"./({vue-component-lib,src,test,__tests__}/**/*.{ts,tsx,js,jsx})|*.{ts,tsx,js,jsx}\"",
"prettier.dry-run": "npm run prettier.base -- --list-different",
"release": "np",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/stencil-ds-output-targets.git"
},
"author": "Ionic Team",
"homepage": "https://stenciljs.com/",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/stencil-ds-output-targets/issues"
},
"peerDependencies": {
"@stencil/core": ">=2.0.0 || >=3 || >= 4.0.0-beta.0 || >= 4.0.0"
},
"devDependencies": {
"@ionic/prettier-config": "^2.0.0",
"@stencil/core": "^3.0.0",
"@types/jest": "^26.0.9",
"jest": "^26.3.0",
"lerna": "^4.0.0",
"lerna-changelog": "^1.0.1",
"np": "^6.0.2",
"prettier": "2.7.1",
"rimraf": "^4.2.0",
"rollup": "^2.23.1",
"semver": "^5.5.0",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"jest": {
"transform": {
"^.+\\.(js|ts|tsx)$": "<rootDir>/test/jest.preprocessor.js"
},
"testRegex": "(\\.(test|spec))\\.(ts?|tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
],
"testURL": "http://localhost"
},
"gitHead": "a3588e905186a0e86e7f88418fd5b2f9531b55e0",
"volta": {
"extends": "../../package.json"
}
}