This repository has been archived by the owner on Mar 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 304
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "component",
"version": "1.1.0",
"description": "Component package manager consuming git repositories",
"keywords": [
"component",
"package",
"client",
"browser",
"module"
],
"author": "TJ Holowaychuk <[email protected]>",
"repository": "componentjs/component",
"dependencies": {
"component-build": "^1.2.2",
"component-consoler": "^2.0.0",
"component-flatten": "^1.0.1",
"component-ls": "^2.1.0",
"component-outdated2": "^1.0.4",
"component-pin": "^1.0.4",
"component-resolver": "^1.3.0",
"component-search2": "^1.1.1",
"component-updater": "^1.0.4",
"component-watcher": "^1.0.1",
"component-remotes": "^1.2.0",
"commander": "^2.2.0",
"semver": "^2.2.1",
"mkdirp": "~0.3.5",
"rimraf": "^2.2.6",
"superagent": "~0.17.0",
"win-fork": "~1.1.1",
"debug": "*",
"co": "^3.0.0",
"tiny-lr-fork": "0.0.5"
},
"devDependencies": {
"mocha": "1",
"should": "3"
},
"bin": {
"component": "bin/component",
"component-build": "bin/component-build",
"component-crawl": "bin/component-crawl",
"component-duplicates": "bin/component-duplicates",
"component-help": "bin/component-help",
"component-install": "bin/component-install",
"component-link": "bin/component-link",
"component-ls": "bin/component-ls",
"component-outdated": "bin/component-outdated",
"component-pin": "bin/component-pin",
"component-search": "bin/component-search",
"component-update": "bin/component-update",
"component-validate": "bin/component-validate"
},
"main": "lib/component",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "make test"
}
}