-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 1.88 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
{
"name": "riot",
"version": "2.3.13",
"description": "A React-like user interface micro-library",
"homepage": "http://riotjs.com/",
"repository": "riot/riot",
"author": "Muut, Inc. and other contributors",
"contributors": [
"Richard Bondi",
"Gianluca Guarini",
"Tsutomu Kawamura",
"Alberto Martínez",
"Tero Piirainen"
],
"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.3.14",
"riot-compiler": "^2.3.20",
"riot-observable": "^2.3.14",
"riot-route": "^2.3.15",
"riot-tmpl": "^2.3.20",
"simple-dom": "0.2.7",
"simple-html-tokenizer": "^0.2.1"
},
"devDependencies": {
"cheerio": "^0.19.0",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"expect.js": "^0.3.1",
"istanbul": "^0.4.2",
"glob": "^6.0.4",
"jsdom": "^7.2.2",
"karma": "^0.13.19",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^0.2.3",
"karma-sauce-launcher": "^0.3.0",
"mocha": "^2.3.4",
"smash": "0.0.15",
"phantomjs": "^1.9.19",
"uglify-js": "latest"
},
"preferGlobal": true,
"files": [
"lib",
"riot.js",
"riot.min.js",
"riot+compiler.js",
"riot+compiler.min.js"
],
"bin": {
"riot": "node_modules/.bin/riot"
},
"main": "lib/server/index.js",
"browser": "riot.js",
"spm": {
"main": "riot.js",
"ignore": [
"test",
"lib",
"make"
]
}
}