-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
130 lines (130 loc) · 3.76 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "helix-ui",
"version": "2.4.0-rc.0",
"description": "Web Component Library",
"keywords": [
"custom elements",
"shadow dom",
"ui toolkit",
"v1"
],
"main": "dist/js/helix-ui.cjs.js",
"module": "dist/js/helix-ui.esm.js",
"unpkg": "dist/js/helix-ui.js",
"files": [
"dist/"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/pluginutils": "^3.0.8",
"@open-wc/testing": "2.5.33",
"@open-wc/testing-karma": "3.4.8",
"@webcomponents/webcomponentsjs": "^2.4.3",
"babel-loader": "^8.1.0",
"browser-sync": "^2.27.4",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.2",
"clean-css": "^4.1.9",
"deepmerge": "^3.2.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.4",
"esm": "^3.0.84",
"express": "^4.16.3",
"front-matter": "^2.2.0",
"fs-extra": "^8.1.0",
"gh-pages": "^2.0.0",
"globby": "^10.0.2",
"gulp": "^4.0.2",
"gulp-tar": "^3.1.0",
"highlight.js": "^9.12.0",
"jsdoc": "^3.6.7",
"jsdom": "^12.2.0",
"json5": "^2.1.3",
"karma": "^5.2.3",
"karma-sauce-launcher": "~4.1.4",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1",
"lodash": "^4.17.15",
"mocha": "^5.2.0",
"moment": "^2.18.1",
"node-sass": "^4.12.0",
"nunjucks": "^3.0.1",
"nyc": "^14.1.1",
"raw-loader": "^4.0.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-terser": "^5.1.2",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0",
"stylelint": "^13.13.1",
"svg-inline-loader": "^0.8.2",
"tar": "^6.0.0",
"webpack": "^4.42.1",
"whatwg-fetch": "^2.0.4",
"yargs": "^17.0.1"
},
"bundledDependencies": [
"@webcomponents/webcomponentsjs"
],
"scripts": {
"apidocs": "jsdoc -c jsdoc.conf.json",
"clean": "rm -fr node_modules",
"clean:public": "scripts/cleanPublic.js",
"compile": "yarn gulp bundle",
"test:coverage": "nyc --reporter=lcov mocha",
"pregenerate": "yarn compile",
"generate": "scripts/generate.js",
"preghpages": "yarn generate",
"ghpages": "scripts/publish.js",
"install:clean": "rm -fr node_modules && yarn install",
"lint": "scripts/lint.sh",
"postversion": "git push upstream --tags",
"prepublishOnly": "yarn compile --prod",
"preserve": "yarn clean:public && yarn generate",
"serve": "scripts/serve.js",
"prestart": "scripts/setup-git-hooks.sh && yarn clean:public && yarn generate",
"start": "scripts/start.js",
"test:unit:deprecated": "mocha test/run_unit.js",
"test:deprecated": "cd test; yarn test",
"test": "karma start",
"test:build": "yarn compile --prod && yarn test",
"test:sauce": "karma start karma.sauce.config.js",
"test:update": "karma start --update-snapshots",
"test:prune": "karma start --prune-snapshots",
"test:watch": "karma start --auto-watch=true --single-run=false"
},
"nyc": {
"exclude": [
"src/**/*.spec.js",
"test/run_unit.js"
]
},
"repository": "https://github.com/HelixDesignSystem/helix-ui.git",
"author": "Ryan Johnson <rhino.citguy@gmail.com>",
"contributors": [
"Andrew Raiford",
"Andrew Yurisich",
"Bade Yesubabu",
"Cathy Siller",
"Evan Nabors",
"James Thompson",
"Lalith Karikelli",
"Nicko Winner-Arroyo",
"Shaleen Agarwal",
"Steven Salinas",
"Ty Taylor"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/HelixDesignSystem/helix-ui/issues"
},
"homepage": "https://github.com/HelixDesignSystem/helix-ui#readme"
}