-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.25 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
{
"name": "riot",
"version": "2.0.10",
"description": "A React- like, 2.5K user interface library",
"homepage": "https://muut.com/riotjs/",
"repository": "muut/riotjs",
"author": "Muut, Inc. and other contributors",
"license": "MIT",
"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": {
"chokidar": "~1.0.0-rc2",
"minimist": "~1.1.0",
"shelljs": "~0.3.0"
},
"devDependencies": {
"jscs": "^1.11.3",
"jsdom": "^3.1.1",
"jshint": "latest",
"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/cli.js"
},
"main": "lib/compiler.js",
"browser": "riot.js",
"spm": {
"main": "riot.js",
"ignore": [
"demo",
"doc",
"test",
"lib",
"make"
]
}
}