forked from serendipious/react-coffee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "react-coffee",
"version": "0.1.1",
"description": "React in CoffeeScript without escaping into JSX or painfully contorting syntax.",
"main": "./lib/react-coffee",
"scripts": {
"prepublish": "grunt clean lint coffee",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/atom/react-coffee.git"
},
"bugs": {
"url": "https://github.com/atom/react-coffee/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/atom/react-coffee/raw/master/LICENSE.md"
}
],
"devDependencies": {
"coffee-script": "~1.6.3",
"jasmine-focused": "~0.12.0",
"jasmine-waits-for-callback": "~0.1.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-cli": "~0.1.8",
"grunt": "~0.4.1",
"grunt-shell": "~0.2.2",
"grunt-coffeelint": "0.0.6",
"rimraf": "~2.2.2",
"json-diff": "~0.3.1",
"coffee-cache": "~0.2.0",
"jsdom": "~0.8.10"
},
"dependencies": {
"envify": "~0.2.0",
"react": "~0.8.0",
"delegato": "~0.4.0",
"mixto": "~0.3.0",
"property-accessors": "~0.1.0"
}
}