This repository has been archived by the owner on Mar 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.19 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": "riot",
"version": "3.13.2",
"description": "Simple and elegant component-based UI library",
"homepage": "http://riot.js.org/",
"repository": "riot/riot",
"author": "Riot maintainers team + smart people from all over the world",
"contributors": [
"Gianluca Guarini https://github.com/GianlucaGuarini"
],
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "make riot"
},
"keywords": [
"custom tags",
"custom elements",
"web components",
"virtual dom",
"shadow dom",
"minimal",
"simple",
"easy",
"dom",
"minimalist",
"client-side",
"framework",
"declarative",
"templating",
"template",
"data binding",
"mvc",
"model",
"view",
"controller",
"riotjs",
"riot.js"
],
"dependencies": {
"riot-cli": "^4.0.2",
"riot-compiler": "^3.5.2",
"riot-observable": "^3.0.0",
"riot-tmpl": "^3.0.8",
"simple-dom": "1.3.0",
"simple-html-tokenizer": "^0.5.7"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"cheerio": "^1.0.0-rc.2",
"chokidar-cli": "^1.2.1",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-riot": "^1.0.0",
"glob": "^7.1.2",
"istanbul": "^0.4.5",
"jsdom": "^11.10.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^6.0.0",
"karma-sauce-launcher": "^1.2.0",
"mocha": "^4.1.0",
"rollup": "^0.66.6",
"rollup-plugin-alias": "1.4.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-riot": "^2.0.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"uglify-js": "^3.4.9"
},
"preferGlobal": true,
"directories": {
"bin": "bin",
"lib": "lib"
},
"files": [
"lib",
"bin",
"riot.js",
"riot.min.js",
"riot.csp.js",
"riot+compiler.js",
"riot+compiler.min.js"
],
"bin": {
"riot": "bin/index.js"
},
"main": "lib/server/index.js",
"module": "lib/riot.js",
"jsnext:main": "lib/riot.js",
"browser": "riot.js"
}