-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "coffee-react",
"description": "Coffeescript compiler wrapper adding coffee-react-transform CJSX support",
"keywords": [
"coffeescript",
"react",
"jsx",
"cjsx",
"coffee-react"
],
"author": "James Friend",
"version": "5.0.1",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/jsdf/coffee-react/master/LICENSE"
}
],
"files": [
"register.js",
"bin/",
"lib/"
],
"main": "./lib/coffee-react-script",
"bin": {
"cjsx": "./bin/cjsx"
},
"scripts": {
"prepublish": "cake build",
"test": "tap test/*.coffee"
},
"homepage": "https://github.com/jsdf/coffee-react",
"bugs": "https://github.com/jsdf/coffee-react/issues",
"repository": {
"type": "git",
"url": "git://github.com/jsdf/coffee-react.git"
},
"dependencies": {
"coffee-react-jstransform": "^1.0.0",
"coffee-react-transform": "^4.0.0",
"coffee-script": "^1.10.0",
"mkdirp": "^0.5.0"
},
"devDependencies": {
"concat-stream": "^1.4.5",
"react": "^0.13.1",
"tap": "^0.7.1"
}
}