-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "closure-react-loader",
"version": "2.0.0",
"description": "A script loader for Google Closure Library that compiles JSX files on the fly",
"main": "closure-react-loader",
"author": "cristitalau@gmail.com",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/karma start --single-run"
},
"devDependencies": {
"closure-library": "^1.43629075.2",
"jasmine-core": "^2.3.4",
"karma": "^0.12.37",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.6",
"karma-sauce-launcher": "^0.2.14",
"react": "^0.13.3",
"react-tools": "^0.13.3",
"tape": "~2.4.0"
},
"authors": [
"Cristian Talau <cristitalau@gmail.com>"
],
"keywords": [
"closure",
"react"
],
"testling": {
"html": "test/index.html",
"browsers": [
"ie/9..latest",
"chrome/20..latest",
"firefox/19..latest",
"safari/6.0..latest",
"opera/15.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"homepage": "http://github.com/ctalau/closure-react-loader",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}