-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 3.19 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
{
"name": "@tiagoboeing/anywhere-webcomponents",
"version": "0.4.0-0",
"author": "Tiago Boeing",
"homepage": "https://github.com/tiagoboeing/anywhere-webcomponents#readme",
"description": "A UI kit based on web components to use in anywhere",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/custom-elements/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/anywhere-webcomponents/anywhere-webcomponents.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"build:watch": "stencil build --docs --watch",
"start": "npm run dev-server:prepare && chokidar \"./properties/**/*.json\" -c \"npm run style-dictionary\"",
"dev-server": "stencil build --dev --watch --serve",
"dev-server:prepare": "npm-run-all style-dictionary dev-server",
"style-dictionary": "style-dictionary build",
"test": "stencil test --spec --e2e --coverage --verbose --json --outputFile=.jest-test-results.json",
"test:watch": "stencil test --spec --e2e --coverage --watchAll --verbose --json --outputFile=.jest-test-results.json",
"test:coverage": "stencil test --spec --e2e --coverage --json --outputFile=.jest-test-results.json",
"generate": "stencil generate",
"changelog": "auto-changelog",
"changelog:debug": "auto-changelog --template json --output changelog-data.json",
"story": "npm-run-all --parallel build:watch storybook",
"story:test": "npm-run-all test:generate story",
"storybook": "start-storybook -p 6006 -s dist",
"storybook:build": "npm run test && build-storybook -s dist"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tiagoboeing/anywhere-webcomponents/issues"
},
"repository": {
"url": "git+https://github.com/tiagoboeing/anywhere-webcomponents.git"
},
"dependencies": {
"@stencil/core": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@stencil/sass": "^1.3.2",
"@babel/preset-typescript": "^7.10.4",
"@storybook/addon-a11y": "^6.0.26",
"@storybook/addon-actions": "^6.0.26",
"@storybook/addon-backgrounds": "^6.0.26",
"@storybook/addon-essentials": "^6.0.26",
"@storybook/addon-jest": "^6.0.26",
"@storybook/addon-knobs": "^6.0.26",
"@storybook/addon-links": "^6.0.26",
"@storybook/addon-notes": "^5.3.21",
"@storybook/addon-storysource": "^6.0.26",
"@storybook/addon-viewport": "^6.0.26",
"@storybook/addons": "^6.0.26",
"@storybook/html": "^6.0.26",
"@storybook/storybook-deployer": "^2.8.7",
"@storybook/theming": "^6.0.26",
"@types/jest": "^26.0.13",
"@types/puppeteer": "3.0.1",
"auto-changelog": "^2.2.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.2.0",
"chokidar-cli": "^2.1.0",
"jest": "26.4.2",
"jest-cli": "26.4.2",
"npm-run-all": "^4.1.5",
"puppeteer": "5.2.1",
"puppeteer-core": "^5.2.1",
"react-is": "^16.13.1",
"style-dictionary": "^3.0.0-rc.2",
"write-file-webpack-plugin": "^4.5.1"
},
"keywords": [
"Webcomponents",
"anywhere",
"StencilJS"
]
}