-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 789 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 789 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
31
32
33
34
35
{
"name": "core-component-mixins",
"description": "Core mixins for creating web components",
"version": "0.0.0",
"repository": "https://github.com/ComponentKitchen/core-component-mixins",
"authors": [
"Jan Miksovsky <jan@component.kitchen>"
],
"license": "MIT",
"dependencies": {
"Composable": "componentkitchen/Composable#master",
"webcomponents.js": "^0.7.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.0.14",
"babelify": "^7.0.2",
"chai": "^3.4.1",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-browserify": "^4.0.1",
"mocha": "^2.3.3"
},
"ignore": [
"**/.*",
"node_modules",
"test",
"tests"
],
"browserify": {
"transform": ["babelify"]
},
"jshintConfig": {
"esnext": true
}
}