-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.29 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.29 KB
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
{
"name": "@xt-pagesource/web-component-lib",
"version": "0.0.1",
"description": "A collection of generic web components built with StencilJS",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/web-component-lib/web-component-lib.js",
"files": [
"dist/",
"loader/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pagesource/web-component-lib.git"
},
"bugs": {
"url": "https://github.com/pagesource/web-component-lib/issues"
},
"keywords": [
"Web Components",
"Stencil",
"Pattern Lib",
"Living Style Guide"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist && rimraf www",
"build": "npm run clean && stencil build --docs",
"start": "npm run clean && stencil build --dev --watch --serve",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "npm run clean && stencil test --spec --snapshot",
"test:e2e": "npm run clean && stencil test --e2e --screenshot",
"test.watch": "stencil test --spec --e2e --watchAll",
"test:update": "npm run clean && stencil test --spec -u",
"generate": "plop --plopfile generators/index.js",
"lint": "yarn run lint:ts && yarn run lint:style",
"lint:ts": "tslint 'src/**/**/*.{ts,tsx}'",
"lint:tsfix": "tslint --fix 'src/**/**/*.{ts,tsx}'",
"lint:style": "stylelint 'src/**/*.scss' --fix",
"verify": "npm run lint && npm run test",
"prettify": "prettier --write",
"run-storybook": "start-storybook -p 6006",
"storybook": "concurrently \"yarn:start\" \"yarn:run-storybook\" ",
"storybook:build": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@stencil/core": "^1.3.0",
"@stencil/postcss": "^1.0.1",
"@stencil/sass": "^1.0.1",
"@storybook/addon-a11y": "^5.1.11",
"@storybook/addon-info": "^5.1.11",
"@storybook/addon-knobs": "^5.1.11",
"@storybook/addon-options": "^5.1.11",
"@storybook/addon-viewport": "^5.1.11",
"@storybook/react": "^5.1.11",
"@types/autoprefixer": "^9.6.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@types/puppeteer": "^1.19.1",
"auto-changelog": "^1.15.0",
"autoprefixer": "9.6.1",
"babel-loader": "^8.0.6",
"concurrently": "^4.1.2",
"husky": "^3.0.4",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"lerna": "^3.16.4",
"lint-staged": "^9.2.5",
"node-sass": "^4.12.0",
"plop": "^2.4.0",
"postcss-pxtorem": "^4.0.1",
"postcss-url": "^8.0.0",
"prettier": "^1.18.2",
"puppeteer": "^1.19.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"storybook-addon-jsx": "^7.1.6",
"storybook-readme": "^5.0.8",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-scss": "^3.10.0",
"tslint": "^5.19.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.2"
},
"license": "MIT",
"dependencies": {
"bootstrap": "^4.3.1",
"classnames": "^2.2.6"
}
}