-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"author": "Jixian Wang <[email protected]>",
"name": "node-compile",
"description": "It could compile a multi-files node.js project into an executable binary",
"license": "MIT",
"version": "1.2.0",
"contributors": [
{
"name": "Jixian Wang",
"email": "[email protected]",
"url": "http://shadowgrid.io/"
}
],
"scripts": {
"test": "echo node: $(node -v) && node_modules/.bin/mocha --reporter mocha-circleci-reporter test/test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/hellojixian/node-compiler.git"
},
"main": "./lib/index.js",
"dependencies": {
"async": "^1.5.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"colors": "^1.1.2",
"fs-extra": "^0.30.0",
"glob": "^7.0.0",
"gunzip-maybe": "^1.3.1",
"insert-module-globals": "^7.0.1",
"mkdirp": "^0.5.1",
"module-deps": "^4.0.5",
"ncp": "^2.0.0",
"progress": "^1.1.8",
"recursive-readdir-sync": "^1.0.6",
"request": "^2.67.0",
"source-map": "^0.5.6",
"tar-stream": "^1.3.1",
"uglifyify": "^3.0.1",
"yargs": "^4.2.0"
},
"compiler": {
"input": "./bin/node-compiler",
"output": "compiler^$",
"temp": "src",
"runtime": {
"framework": "nodejs",
"version": "5.5.0",
"ignoreFlags": true
}
},
"preferGlobal": true,
"bin": {
"node-compiler": "bin/node-compiler"
},
"devDependencies": {
"mocha": "^2.4.5",
"mocha-circleci-reporter": "0.0.1"
}
}