forked from riot/riot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.67 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
{
"name": "riot",
"version": "2.2.2",
"description": "A React- like, 3.5K user interface library",
"homepage": "https://muut.com/riotjs/",
"repository": "muut/riotjs",
"author": "Muut, Inc. and other contributors",
"license": "MIT",
"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": {
"chalk": "^1.1.0",
"chokidar": "~1.0.3",
"minimist": "~1.1.1",
"shelljs": "~0.5.1",
"simple-dom": "^0.2.4",
"simple-html-tokenizer": "^0.1.1"
},
"devDependencies": {
"cheerio": "^0.19.0",
"coveralls": "^2.11.2",
"eslint": "^0.24.1",
"expect.js": "^0.3.1",
"glob": "^5.0.13",
"jsdom": "^5.6.0",
"karma": "^0.12.37",
"karma-coverage": "^0.4.2",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sauce-launcher": "^0.2.14",
"mocha": "^2.2.5",
"smash": "0.0.14",
"uglify-js": "latest"
},
"preferGlobal": true,
"files": [
"lib",
"riot.js",
"riot.min.js",
"compiler.js",
"compiler.min.js",
"riot+compiler.js",
"riot+compiler.min.js"
],
"bin": {
"riot": "lib/server/cli.js"
},
"main": "lib/server/index.js",
"browser": "riot.js",
"spm": {
"main": "riot.js",
"ignore": [
"demo",
"doc",
"test",
"lib",
"make"
]
}
}