-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.13 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
{
"name": "blossom-js",
"version": "0.50.0",
"description": "🌸 The web framework that will love you as much as you love it. Zero binding and 100% DOM powered. Create custom elements effortlessly.",
"main": "modules/index.js",
"module": "modules/index.js",
"scripts": {
"test": "jest",
"lint": "eslint --fix ./modules ./test",
"test-build": "webpack",
"build": "webpack -p",
"serve": "webpack-serve",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azukaar/blossom-js.git"
},
"keywords": [
"blossom-js",
"javascript",
"html",
"css",
"framework",
"data",
"template"
],
"files": [
"umd",
"modules"
],
"babel": {
"presets": [
"stage-2"
],
"plugins": [
"transform-decorators-legacy"
],
"env": {
"production": {
"presets": [
[
"env",
{
"targets": {
"node": "last 2 versions",
"browsers": "last 2 versions"
}
}
]
]
},
"development": {
"presets": [
[
"env",
{
"targets": {
"node": "current",
"browsers": "last 1 chrome version"
}
}
]
]
},
"test": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
},
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.5"
},
"devDependencies": {
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"blossom-js-server-side": "^0.42.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.15.0",
"jest": "^22.4.2",
"webpack": "^4.3.0",
"webpack-cli": "^2.0.13",
"webpack-serve": "^2.0.2"
},
"author": "Yann Stepienik",
"license": "Apache-2.0"
}