forked from Famous/famous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 5.1 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "famous",
"version": "0.3.5",
"description": "Famo.us is a JavaScript framework for everyone who wants to build beautiful experiences on any device.",
"repository": {
"type": "git",
"url": "https://github.com/famous/famous"
},
"keywords": [
"famous"
],
"scripts": {
"test": "npm run lint -s",
"lint-eslint": "eslint src/",
"lint-jscs": "jscs src/",
"lint": "npm run lint-eslint && npm run lint-jscs",
"build": "npm run build-amd && npm run build-amd-min && npm run build-global && npm run build-global-min && npm run build-css",
"build-amd": "famous-dist-generator src/ dist/famous.js --amd",
"build-amd-min": "famous-dist-generator src/ dist/famous.min.js --amd --minify",
"build-global": "famous-dist-generator src/ dist/famous-global.js",
"build-global-min": "famous-dist-generator src dist/famous-global.min.js --minify",
"build-common": "famous-dist-generator src/ dist/common --common",
"build-css": "famous-dist-generator src/ dist/ --css ",
"build-docs": "famous-doc-generator --base src/ --out docs/ --createIndex",
"build-examples": "famous-examples-generator -i ./examples"
},
"authors": [
"Adam Cmiel <[email protected]>",
"Adnan Wahab <[email protected]>",
"Adrian Rossouw <[email protected]>",
"Alex McLeod <[email protected]>",
"Alexander Gugel <[email protected]>",
"Andrew de Andrade <[email protected]>",
"Anthony Talves <[email protected]>",
"Antmanler <[email protected]>",
"Arkady Pevzner <[email protected]> <[email protected]>",
"Austen Talbot <[email protected]>",
"Avi Haiat <[email protected]>",
"Brendan Graetz <[email protected]>",
"Carl A. Fahlstrom <[email protected]>",
"Cem Turan <[email protected]>",
"Christopher Cook <[email protected]>",
"Cliff Crosland <[email protected]>",
"Corey Wilson <[email protected]>",
"Daniel Lewis <[email protected]>",
"Dan Miller <[email protected]>",
"Dave Fetterman <[email protected]>",
"David Valdman <[email protected]> <[email protected]>",
"Denis Gorbachev <[email protected]>",
"Eric Schoffstall <[email protected]> <[email protected]>",
"extempl <[email protected]>",
"Felix Tripier <[email protected]>",
"Gregory Lull <[email protected]>",
"Hongxu Liu <[email protected]>",
"IjzerenHein <[email protected]>",
"Imtiaz Majeed <[email protected]>",
"J. Andrew Brassington <[email protected]>",
"Jacques Desmarais <[email protected]>",
"James Snowden <[email protected]>",
"Joe Johnston <[email protected]>",
"John Hurliman <[email protected]>",
"Jonathan Reem <[email protected]>",
"Jordan Papaleo <[email protected]>",
"Josef Reinhard Brandl <[email protected]>",
"Joseph Carroll <[email protected]>",
"Joseph Orbegoso Pea <[email protected]>",
"Joseph Sample <[email protected]>",
"Kevin McGee <[email protected]>",
"Kyle Craft <[email protected]>",
"Lauricio Su <[email protected]>",
"Mark Lu <[email protected]> <[email protected]>",
"Mark Marijnissen <[email protected]>",
"Matthew Trost <[email protected]> <[email protected]>",
"Max Xu <[email protected]>",
"Michael O'Brien <[email protected]> <[email protected]>",
"Michael Xia <[email protected]>",
"Morten Henriksen <[email protected]>",
"Murillo <[email protected]>",
"Myles Borins <[email protected]> <[email protected]>",
"Nitin Saroha <[email protected]>",
"Oleg Slobodskoi <[email protected]>",
"PatrickJS <[email protected]>",
"Peter Finley <[email protected]>",
"Peter Kiers <[email protected]>",
"Pierre-Eric Marchandet <[email protected]>",
"Raphaël Benitte <[email protected]>",
"rsperberg <[email protected]>",
"Sabith Pocker <[email protected]>",
"Sing Li <[email protected]>",
"skoczen <[email protected]>",
"Spencer Stebbins <[email protected]>",
"Stephan Bijzitter <[email protected]>",
"Steve Mao <[email protected]>",
"Tal Gleichger <[email protected]>",
"Thomas L. <[email protected]>",
"Tim Chin <[email protected]> <[email protected]>",
"Tom Hornos <[email protected]>",
"Travis Cherry <[email protected]>",
"Wayland Woodruff <[email protected]>",
"Will Gester <[email protected]> <[email protected]>",
"Zach Gardner <[email protected]>",
"Zack Brown <[email protected]>",
"Zeqiu Wu <[email protected]>"
],
"license": "MPL v2.0",
"bugs": {
"url": "https://github.com/famous/famous/issues"
},
"homepage": "https://famo.us",
"devDependencies": {
"eslint": "^0.16.2",
"famous-dist-generator": "^1.0.2",
"famous-doc-generator": "^0.8.0",
"famous-examples-generator": "^0.3.0",
"jscs": "^1.5.9"
},
"dependencies": {
"cssify": "^0.7.0",
"deamdify": "^0.1.1"
},
"browserify": {
"transform": [
"cssify",
"deamdify"
]
}
}