-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.82 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
{
"name": "soft-components",
"version": "0.4.5",
"description": "Web components with a soft touch.",
"keywords": [
"simple",
"soft",
"neumorphism",
"web components"
],
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/soft-components/soft-components.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"patch": "npm run commit & npm version patch & npm publish",
"minor": "npm run commit & npm version minor & npm publish",
"major": "npm run commit & npm version major & npm publish",
"build-readme": "stencil build --docs-readme",
"build-json": "stencil build --docs-json",
"build": "stencil build --docs-readme & stencil build --docs-json",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"commit": "git add . & git commit -m \"Committed via npm\"",
"docs:dev:md": "stencil build --docs-json --docs-readme --watch",
"docs:dev:server": "cd docs & npm start",
"docs:dev": "concurrently \"npm:docs:dev:md\" \"npm:docs:dev:server\""
},
"devDependencies": {
"@stencil/core": "^2.3.0",
"@stencil/postcss": "^1.0.1",
"@stencil/sass": "^1.3.2",
"@types/autoprefixer": "^9.7.2",
"@types/color": "^3.0.1",
"@types/jest": "^26.0.14",
"autoprefixer": "^9.8.6",
"concurrently": "^6.2.0",
"jest": "^26.6.0",
"postcss-pxtorem": "^4.0.1"
},
"license": "MIT",
"dependencies": {
"color": "^3.1.3",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1"
}
}