-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.22 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
{
"name": "sham-ui-dynamic-component",
"description": "Dynamic component for sham-ui",
"author": "Eugeny Burnashov <[email protected]>",
"main": "index.js",
"module": "index.module.js",
"version": "3.0.0",
"license": "MIT",
"scripts": {
"start": "MACRO_REF_REPLACE=enabled rollup -w -c ./demo-app/rollup.config.js",
"test:clear-cache": "jest --clearCache",
"test:coverage": "MACRO_REF_REPLACE=enabled jest --coverage && yarn size",
"test:watch": "MACRO_REF_REPLACE=enabled jest --watchAll",
"build": "rollup -c",
"size": "MACRO_REF_REPLACE=uniq yarn build && size-limit",
"prepublish": "yarn size && yarn build",
"doc:generate": "documentation readme src/component.js --section=API",
"doc:lint": "documentation lint src/**"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.6.2",
"@babel/runtime": "^7.14.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@size-limit/preset-small-lib": "^2.1.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^23.6.0",
"babel-plugin-macros": "^2.7.1",
"core-js": "^3.11.3",
"documentation": "^12.1.2",
"eslint": "^5.16.0",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-jest": "^22.6.4",
"jest": "^23.6.0",
"jest-runner-eslint": "^0.7.4",
"jest-runner-stylelint": "^1.0.0",
"rollup": "^2.47.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-sham-ui-templates": "^1.1.0",
"sass": "^1.32.12",
"sham-ui-directives": "^6.0.0",
"sham-ui-macro": "^3.6.0",
"sham-ui-templates": "^6.0.0",
"sham-ui-templates-jest-preprocessor": "^1.3.0",
"sham-ui-test-helpers": "^6.0.0",
"stylelint": "^10.1.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.8.0"
},
"dependencies": {
"sham-ui": "^6.0.0"
}
}