-
Notifications
You must be signed in to change notification settings - Fork 53
/
USAGE.txt
45 lines (37 loc) · 1.59 KB
/
USAGE.txt
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
ied is a package manager for Node.
Usage:
ied [command] [arguments]
The commands are:
install fetch packages and dependencies
run run a package.json script
shell enter a sub-shell with augmented PATH
ping check if the registry is up
config print the used config
init initialize a new package
link link the current package or into it
unlink unlink the current package or from it
start runs `ied run start`
stop runs `ied run stop`
build runs `ied run build`
test runs `ied run test`
Flags:
-h, --help show usage information
-v, --version print the current version
-S, --save update package.json dependencies
-D, --save-dev update package.json devDependencies
-O, --save-optional update package.json optionalDependencies
-r, --registry use a custom registry
(default: http://registry.npmjs.org/)
-b, --build execute lifecycle scripts upon completion
(e.g. postinstall)
-prod, --production only install dependencies and optionalDependencies
Example:
ied install
ied install <pkg>
ied install <pkg>@<version>
ied install <pkg>@<version range>
Can specify one or more: ied install semver@^5.0.1 tape
If no argument is supplied, installs dependencies from package.json.
Sub-commands can also be called via their shorthand aliases.
README: https://github.com/alexanderGugel/ied
ISSUES: https://github.com/alexanderGugel/ied/issues