-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 1.5 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
64
65
66
67
68
69
70
71
72
73
{
"name": "sake-core",
"version": "1.6.7",
"description": "Build system for JavaScript applications with extensible core and support for modern JS.",
"main": "lib/sake-core.js",
"module": "lib/sake-core.mjs",
"types": "sake-core.d.ts",
"files": [
"sake-core.d.ts",
"install.js",
"lib/",
"src/"
],
"repository": {
"type": "git",
"url": "git://github.com/sakejs/sake-core"
},
"keywords": [
"async",
"build",
"bundle",
"sake",
"sakefile",
"cli",
"coffee",
"coffee-script",
"make",
"minify",
"reload",
"sake",
"sakefile",
"scaffold",
"server",
"task",
"test",
"tool",
"uglify",
"watch"
],
"author": "Hanzo, Inc. <[email protected]",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/sakejs/sake-core/issues"
},
"homepage": "https://sakejs.com",
"dependencies": {
"@types/node": "^10.3.4",
"chalk": "^2.4.1",
"cp": "^0.2.0",
"executive": "^1.6.3",
"postmortem": "^0.2.6",
"resolve": "^1.8.1",
"vigil": "^0.7.3"
},
"devDependencies": {
"bluebird": "3.5.1",
"coffee-script": "^1.12.7",
"es-is": "^3.3.10",
"sake-bundle": "^0.6.14",
"sake-cli": "^0.7.2",
"sake-outdated": "^0.4.2",
"sake-publish": "^0.1.17",
"sake-test": "^0.2.1",
"sake-version": "^0.1.19",
"typescript": "^2.9.2"
},
"scripts": {
"build": "sake build",
"prepublishOnly": "sake build",
"pretest": "sake build",
"test": "sake test"
}
}