-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 3.95 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 3.95 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
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
131
132
133
134
135
136
{
"name": "Michael Collins/webcomp-test",
"description": "A WCFactory managed, sustainable web component library.",
"wcfactory": {
"askSASS": true,
"askProps": true,
"askHAX": true,
"monorepo": "webcomp-test",
"orgNpm": "Michael Collins",
"orgGit": "open-curriculum",
"gitRepo": "git@github.com:open-curriculum/webcomp-test.git",
"sass": {
"name": "rh-sass",
"pkg": "@rhelements/rh-sass",
"path": "rh-sass/rh-sass"
}
},
"author": {
"name": "open-curriculum",
"url": ""
},
"license": "Apache-2.0",
"repository": "git@github.com:open-curriculum/webcomp-test.git",
"scripts": {
"start": "spandx",
"lerna": "lerna",
"init": "lerna init",
"test": "yarn run build && wct --configFile wct.conf.json test/index.html",
"build": "lerna run build",
"bootstrap": "lerna bootstrap --hoist",
"postinstall": "yarn run bootstrap",
"precommit": "yarn run test-suite-inject > /dev/null && lint-staged",
"test-suite-inject": "node scripts/test-suite-inject.js",
"storybook": "start-storybook -c .storybook -p 9001 -s ./elements",
"build-storybook": "build-storybook -c .storybook -o .storybook_out",
"rebuild-wcfcache": "./node_modules/.bin/gulp",
"new": "yarn run rebuild-wcfcache && wcfactory new && yarn run test-suite-inject && yarn run bootstrap"
},
"devDependencies": {
"@babel/core": "7.1.0",
"@babel/preset-env": "7.1.0",
"@storybook/addon-a11y": "3.4.11",
"@storybook/addon-actions": "3.4.11",
"@storybook/addon-knobs": "3.4.11",
"@storybook/addon-notes": "3.4.11",
"@storybook/addon-options": "3.4.11",
"@storybook/addon-storyshots": "3.4.11",
"@storybook/addon-storysource": "3.4.11",
"@storybook/addon-viewport": "3.4.11",
"@storybook/cli": "3.4.11",
"@storybook/polymer": "3.4.11",
"@webcomponents/webcomponentsjs": "2.1.3",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-es2015-modules-umd": "6.24.1",
"babel-preset-env": "1.7.0",
"browser-sync": "2.24.7",
"chalk": "2.4.1",
"css-scss": "0.1.1",
"decomment": "0.9.2",
"del": "3.0.0",
"dialog-polyfill": "0.4.10",
"global": "4.3.2",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "8.0.0",
"gulp-clean-css": "3.10.0",
"gulp-concat-util": "0.5.5",
"gulp-rename": "1.4.0",
"gulp-replace": "1.0.0",
"gulp-sass": "4.0.1",
"gulp-sequence": "1.0.0",
"gulp-shell": "0.6.5",
"gulp-strip-css-comments": "2.0.0",
"gulp-svg-sprite": "1.5.0",
"gulp-trim": "1.0.2",
"husky": "1.0.1",
"lerna": "3.4.0",
"lint-staged": "7.3.0",
"lodash": "4.17.11",
"lodash.clonedeep": "4.5.0",
"node-sass": "4.9.3",
"polymer-build": "3.0.4",
"polymer-webpack-loader": "2.0.3",
"prettier": "1.14.3",
"requirejs": "2.3.6",
"rollup": "0.66.2",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-commonjs": "9.1.8",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-terser": "3.0.0",
"spandx": "1.0.3",
"strip-css-comments": "3.0.0",
"trim": "0.0.1",
"wct-browser-legacy": "1.0.1",
"web-component-tester": "6.8.0",
"whatwg-fetch": "2.0.4",
"yo": "1.8.5"
},
"dependencies": {
"@polymer/lit-element": "0.6.1",
"@polymer/polymer": "3.0.5",
"babel-plugin-transform-custom-element-classes": "0.1.0",
"gulp-copy": "1.1.0",
"inquirer-recursive": "0.0.5",
"jest": "23.6.0",
"slim-js": "4.0.1"
},
"lint-staged": {
"linters": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"ignore": [
"elements/**/*.*.js",
"wcfLibraries/**/*.js",
"wcfBuildTargets/**/*.js"
]
},
"keywords": [
"yeoman-generator",
"custom-elements",
"web-components",
"webcomponents",
"polymer",
"lit-element",
"skate-js",
"slim-js",
"twig",
"lit-html",
"vanillajs"
],
"private": true,
"npmClient": "yarn",
"useWorkspaces": true
}