-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 811 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 811 Bytes
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
{
"name": "repeat-template",
"version": "1.0.0",
"description": "Webcomponent custom element that can be used to repeat internal dom elements",
"main": "webpack.config.js",
"scripts": {
"test": "jest",
"dist": "webpack --config webpack.config.js -p"
},
"keywords": [
"web",
"components",
"web-componets",
"custom-elements",
"template"
],
"author": "Michael Bell",
"license": "MIT",
"devDependencies": {
"babel-core": "~6.21.0",
"babel-loader": "~6.2.10",
"babel-preset-es2015": "~6.18.0",
"jest-cli": "~18.1.0",
"webcomponents.js": "~0.7.23",
"webpack": "~1.14.0"
},
"jest": {
"setupFiles": ["<rootDir>/__test__/setupFile.js"]
}
}