-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
62 lines (62 loc) · 1.32 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
{
"name": "jsx",
"version": "0.9.89",
"description": "a faster, safer, easier JavaScript",
"license": "MIT",
"keywords": [
"jsx",
"compiler",
"altjs"
],
"homepage": "http://jsx.github.io/",
"repository": "git://github.com/jsx/JSX.git",
"bugs": {
"url": "https://github.com/jsx/JSX/issues"
},
"preferGlobal": true,
"author": {
"name": "Kazuho Oku",
"email": "[email protected]"
},
"contributors": [
{
"name": "Goro Fuji (gfx)",
"email": "[email protected]"
},
{
"name": "Yuichi Nishiwaki (wasabiz)",
"email": "[email protected]"
}
],
"bin": {
"jsx": "./bin/jsx",
"jsx-with-server": "./bin/jsx-with-server",
"jsx-profile-server": "./bin/jsx-profile-server"
},
"directories": {
"bin": "./bin",
"tool": "./tool",
"extlib": "./extlib",
"web": "./web",
"lib": "./lib",
"src": "./src"
},
"dependencies": {
"source-map": "~ 0.1.22",
"esprima": "~ 1.1.0",
"escodegen": "1.3.3",
"esmangle": "~ 1.0.0",
"source-map-support": "~ 0.2.1"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"postpublish": "node tool/bootstrap-compiler.js --run tool/postpublish.jsx"
},
"devDependencies": {
"grunt-contrib-watch": "~0.4.4",
"grunt": "~0.4.1",
"grunt-exec": "~0.4.2"
}
}