-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.57 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
{
"name": "@dashedjs/dashed-core",
"version": "0.0.1",
"description": "Set of reusable dashed Web Components to speed up WebApps development",
"main": "packages/index.js",
"umd": "packages/index.js",
"module": "packages/index.js",
"types": "dist/dashed.d.ts",
"scripts": {
"tsc:watch": "tsc -w",
"start": "polyserve --npm --module-resolution=node",
"bootstrap": "lerna bootstrap --hoist",
"install:dependencies": "bash scripts/install-dependencies.sh",
"remove:folders": "bash scripts/remove-folders.sh",
"lint": "eslint .",
"build": "gulp build"
},
"private": true,
"files": [
"dist",
"packages"
],
"repository": {
"type": "git",
"url": "https://github.com/dashedjs/dashed.git"
},
"keywords": [
"webcomponents",
"customElements",
"ui components",
"design system",
"vanilla javascript"
],
"author": "Fidèle Palouki",
"license": "MIT",
"engines": {
"node": "10.12.0"
},
"bugs": {
"url": "hhttps://github.com/dashedjs/dashed#issues"
},
"homepage": "hhttps://github.com/dashedjs/dashed#README",
"devDependencies": {
"gulp": "^4.0.0",
"lerna": "^3.4.0",
"polyserve": "^0.27.12",
"rollup": "^0.65.2",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^2.0.2",
"semantic-release": "^15.9.15",
"shelljs": "^0.8.2"
},
"dependencies": {
"@polymer/lit-element": "^0.6.0",
"@webcomponents/webcomponentsjs": "^2.1.2"
}
}