-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
40 lines (40 loc) · 940 Bytes
/
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
{
"name": "xeon",
"version": "0.0.3",
"description": "module loader for bash scripts",
"bin": {
"xeon": "dist/cli.js"
},
"scripts": {
"build": "babel ./lib -d ./dist",
"test": "tape ./test/test.*.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hzlmn/xeon.git"
},
"author": "Oleh Kuchuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/hzlmn/xeon/issues"
},
"homepage": "https://github.com/hzlmn/xeon#readme",
"dependencies": {
"chalk": "^1.1.1",
"chokidar": "^1.4.1",
"meow": "^3.6.0",
"output-file-sync": "^1.1.1",
"prettyjson": "^1.1.3",
"shebang-regex": "^2.0.0",
"sync-request": "^2.1.0",
"trim": "0.0.1",
"update-notifier": "^0.7.0",
"url-regex": "^3.1.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"fly-babel": "^0.8.0",
"tap-spec": "^4.1.1",
"tape": "^4.2.2"
}
}