-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 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
{
"name": "riot",
"version": "2.6.5",
"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",
"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",
"router",
"model",
"view",
"controller",
"riotjs",
"riot.js"
],
"dependencies": {
"riot-cli": "^2.6.2",
"riot-compiler": "^2.5.5",
"riot-observable": "^2.5.0",
"riot-route": "^2.5.0",
"riot-tmpl": "^2.4.2",
"simple-dom": "0.3.2",
"simple-html-tokenizer": "^0.2.5"
},
"devDependencies": {
"benchmark": "^2.1.1",
"cheerio": "^0.22.0",
"coveralls": "^2.11.14",
"eslint": "^3.9.0",
"expect.js": "^0.3.1",
"glob": "^7.1.1",
"istanbul": "^0.4.5",
"jsdom": "^9.8.3",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sauce-launcher": "^1.1.0",
"mocha": "^3.1.2",
"phantomjs-prebuilt": "^2.1.13",
"smash": "0.0.15",
"uglify-js": "latest"
},
"preferGlobal": true,
"files": [
"lib",
"riot.js",
"riot.min.js",
"riot.csp.js",
"riot.csp.min.js",
"riot+compiler.js",
"riot+compiler.min.js"
],
"bin": {
"riot": "node_modules/riot-cli/lib/index.js"
},
"main": "lib/server/index.js",
"browser": "riot.js",
"spm": {
"main": "riot.js",
"ignore": [
"test",
"lib",
"make"
]
}
}