-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.46 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
{
"name": "riot",
"version": "2.0.12",
"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": {
"chokidar": "~1.0.0-rc3",
"minimist": "~1.1.0",
"shelljs": "~0.3.0"
},
"devDependencies": {
"eslint": "^0.15.0",
"expect.js": "^0.3.1",
"glob": "^4.4.1",
"jsdom": "^4.0.1",
"karma": "^0.12.31",
"karma-coverage": "^0.2.7",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"mocha": "^2.1.0",
"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/node.js",
"browser": "riot.js",
"spm": {
"main": "riot.js",
"ignore": [
"demo",
"doc",
"test",
"lib",
"make"
]
}
}