-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.37 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
63
{
"name": "sake-cli",
"version": "0.7.3",
"description": "The Sake command line interface",
"homepage": "http://github.com/sakejs/sake-cli",
"bugs": "http://github.com/sakejs/sake-cli/issues",
"keywords": [
"async",
"build",
"bundle",
"cli",
"coffee",
"coffeescript",
"make",
"minify",
"reload",
"sake",
"sakefile",
"scaffold",
"server",
"task",
"test",
"tool",
"typescript",
"uglify",
"watch"
],
"bin": {
"sake": "bin/sake"
},
"main": "lib/sake.js",
"module": "lib/sake.mjs",
"scripts": {
"build": "handroll src/cli.coffee --cli --executable -o bin/sake",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "bin/sake test"
},
"author": "Hanzo, Inc. <[email protected]>",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/sakejs/sake-cli"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"find-coffee": "^0.2.0",
"sake-core": "^1.6.7",
"yargs": "^11.1.0"
},
"devDependencies": {
"bluebird": "^3.5.1",
"coffeescript": "^2.2.4",
"es-is": "^3.3.10",
"mz": "^2.7.0",
"sake-bundle": "^0.6.7",
"sake-outdated": "^0.3.0",
"sake-publish": "^0.1.17",
"sake-test": "^0.2.1",
"sake-version": "^0.1.19"
}
}