forked from facebookarchive/commoner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1004 Bytes
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
{
"author": {
"name": "Ben Newman",
"email": "bn@cs.stanford.edu"
},
"name": "commoner",
"description": "Flexible tool for translating any dialect of JavaScript into Node-readable CommonJS modules",
"keywords": [
"modules",
"require",
"commonjs",
"exports",
"commoner",
"browserify",
"stitch"
],
"version": "0.9.3",
"license": "MIT",
"homepage": "http://github.com/reactjs/commoner",
"repository": {
"type": "git",
"url": "git://github.com/reactjs/commoner.git"
},
"main": "main.js",
"bin": {
"commonize": "./bin/commonize"
},
"scripts": {
"test": "whiskey test/run.js"
},
"dependencies": {
"q": "~1.0.1",
"recast": "~0.5.12",
"commander": "~2.2.0",
"graceful-fs": "~2.0.3",
"glob": "~3.2.9",
"mkdirp": "~0.3.5",
"private": "~0.1.2",
"install": "~0.1.7",
"iconv-lite": "~0.2.11"
},
"optionalDependencies": {
"whiskey": "0.6.x"
},
"engines": {
"node": ">= 0.8"
}
}