forked from riot/riot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.41 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
100
{
"name": "riot",
"version": "3.7.3",
"description": "A React-like user interface micro-library",
"homepage": "http://riotjs.com/",
"repository": "riot/riot",
"author": "Riot maintainers team + smart people from all over the world",
"contributors": [
"Richard Bondi https://github.com/rsbondi",
"Gianluca Guarini https://github.com/GianlucaGuarini",
"Tsutomu Kawamura https://github.com/cognitom",
"Alberto Martínez https://github.com/aMarCruz",
"Grant Marvin https://github.com/rogueg",
"Tero Piirainen https://github.com/tipiirai"
],
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "make riot"
},
"keywords": [
"custom tags",
"custom elements",
"web components",
"virtual dom",
"shadow dom",
"polymer",
"react",
"jsx",
"minimal",
"minimalist",
"client-side",
"framework",
"declarative",
"templating",
"template",
"data binding",
"mvc",
"model",
"view",
"controller",
"riotjs",
"riot.js"
],
"dependencies": {
"riot-cli": "^3.0.3",
"riot-compiler": "^3.2.5",
"riot-observable": "^3.0.0",
"riot-tmpl": "^3.0.8",
"simple-dom": "1.2.0",
"simple-html-tokenizer": "^0.4.1"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"cheerio": "^1.0.0-rc.2",
"chokidar-cli": "^1.2.0",
"coveralls": "^3.0.0",
"eslint": "^4.7.2",
"eslint-config-riot": "^1.0.0",
"glob": "^7.1.2",
"istanbul": "^0.4.5",
"jsdom": "^11.3.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^5.0.1",
"karma-sauce-launcher": "^1.2.0",
"mocha": "^3.5.3",
"puppeteer": "^0.11.0",
"rollup": "^0.50.0",
"rollup-plugin-alias": "1.3.1",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-riot": "^1.1.0",
"sinon": "^4.0.0",
"sinon-chai": "^2.14.0",
"uglify-js": "^3.1.2"
},
"preferGlobal": true,
"files": [
"lib",
"riot.js",
"riot.min.js",
"riot.csp.js",
"riot+compiler.js",
"riot+compiler.min.js"
],
"bin": {
"riot": "node_modules/riot-cli/lib/index.js"
},
"main": "lib/server/index.js",
"module": "lib/riot.js",
"jsnext:main": "lib/riot.js",
"browser": "riot.js"
}