-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.03 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.03 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
{
"name": "riot",
"version": "4.3.5",
"description": "Simple and elegant component-based UI library",
"homepage": "http://riot.js.org/",
"repository": "riot/riot",
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (http://gianlucaguarini.com)",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "make riot"
},
"keywords": [
"custom tags",
"custom elements",
"web components",
"virtual dom",
"shadow dom",
"minimal",
"minimalist",
"client-side",
"framework",
"declarative",
"templating",
"template",
"data binding",
"mvc",
"model",
"view",
"controller",
"riotjs",
"riot.js"
],
"dependencies": {
"@riotjs/compiler": "^4.3.5",
"@riotjs/dom-bindings": "^4.2.4",
"bianco.attr": "^1.0.0",
"bianco.query": "^1.0.0",
"cumpa": "^1.0.1",
"curri": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-plugin-istanbul": "^5.1.4",
"chai": "^4.2.0",
"core-js": "^3.1.4",
"coveralls": "^3.0.4",
"eslint": "^6.0.1",
"eslint-config-riot": "^2.0.0",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^7.0.0",
"karma-sauce-launcher": "^2.0.2",
"mocha": "^6.1.4",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-ignore": "^1.0.5",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-riot": "^4.0.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"terser": "^4.1.2",
"typescript": "^3.5.3"
},
"files": [
"src",
"riot.js",
"riot.d.ts",
"riot.esm.js",
"riot.min.js",
"riot+compiler.js",
"riot+compiler.min.js"
],
"main": "riot.js",
"module": "riot.esm.js",
"jsnext:main": "riot.esm.js",
"types": "./riot.d.ts"
}