I_Jemin

Installing Node Package

1 +Copyright (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative
2 +Reporters & Editors
3 +
4 +Permission is hereby granted, free of charge, to any person
5 +obtaining a copy of this software and associated documentation
6 +files (the "Software"), to deal in the Software without
7 +restriction, including without limitation the rights to use,
8 +copy, modify, merge, publish, distribute, sublicense, and/or sell
9 +copies of the Software, and to permit persons to whom the
10 +Software is furnished to do so, subject to the following
11 +conditions:
12 +
13 +The above copyright notice and this permission notice shall be
14 +included in all copies or substantial portions of the Software.
15 +
16 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18 +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20 +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 +OTHER DEALINGS IN THE SOFTWARE.
1 + __
2 + /\ \ __
3 + __ __ ___ \_\ \ __ _ __ ____ ___ ___ _ __ __ /\_\ ____
4 + /\ \/\ \ /' _ `\ /'_ \ /'__`\/\ __\/ ,__\ / ___\ / __`\/\ __\/'__`\ \/\ \ /',__\
5 + \ \ \_\ \/\ \/\ \/\ \ \ \/\ __/\ \ \//\__, `\/\ \__//\ \ \ \ \ \//\ __/ __ \ \ \/\__, `\
6 + \ \____/\ \_\ \_\ \___,_\ \____\\ \_\\/\____/\ \____\ \____/\ \_\\ \____\/\_\ _\ \ \/\____/
7 + \/___/ \/_/\/_/\/__,_ /\/____/ \/_/ \/___/ \/____/\/___/ \/_/ \/____/\/_//\ \_\ \/___/
8 + \ \____/
9 + \/___/
10 +
11 +Underscore.js is a utility-belt library for JavaScript that provides
12 +support for the usual functional suspects (each, map, reduce, filter...)
13 +without extending any core JavaScript objects.
14 +
15 +For Docs, License, Tests, and pre-packed downloads, see:
16 +http://underscorejs.org
17 +
18 +Underscore is an open-sourced component of DocumentCloud:
19 +https://github.com/documentcloud
20 +
21 +Many thanks to our contributors:
22 +https://github.com/jashkenas/underscore/contributors
1 +{
2 + "_from": "underscore",
3 + "_id": "underscore@1.8.3",
4 + "_inBundle": false,
5 + "_integrity": "sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI=",
6 + "_location": "/underscore",
7 + "_phantomChildren": {},
8 + "_requested": {
9 + "type": "tag",
10 + "registry": true,
11 + "raw": "underscore",
12 + "name": "underscore",
13 + "escapedName": "underscore",
14 + "rawSpec": "",
15 + "saveSpec": null,
16 + "fetchSpec": "latest"
17 + },
18 + "_requiredBy": [
19 + "#USER",
20 + "/"
21 + ],
22 + "_resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz",
23 + "_shasum": "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022",
24 + "_spec": "underscore",
25 + "_where": "/Users/jeminlee/git-projects/node-practice/npm-demo",
26 + "author": {
27 + "name": "Jeremy Ashkenas",
28 + "email": "jeremy@documentcloud.org"
29 + },
30 + "bugs": {
31 + "url": "https://github.com/jashkenas/underscore/issues"
32 + },
33 + "bundleDependencies": false,
34 + "deprecated": false,
35 + "description": "JavaScript's functional programming helper library.",
36 + "devDependencies": {
37 + "docco": "*",
38 + "eslint": "0.6.x",
39 + "karma": "~0.12.31",
40 + "karma-qunit": "~0.1.4",
41 + "qunit-cli": "~0.2.0",
42 + "uglify-js": "2.4.x"
43 + },
44 + "files": [
45 + "underscore.js",
46 + "underscore-min.js",
47 + "underscore-min.map",
48 + "LICENSE"
49 + ],
50 + "homepage": "http://underscorejs.org",
51 + "keywords": [
52 + "util",
53 + "functional",
54 + "server",
55 + "client",
56 + "browser"
57 + ],
58 + "license": "MIT",
59 + "main": "underscore.js",
60 + "name": "underscore",
61 + "repository": {
62 + "type": "git",
63 + "url": "git://github.com/jashkenas/underscore.git"
64 + },
65 + "scripts": {
66 + "build": "uglifyjs underscore.js -c \"evaluate=false\" --comments \"/ .*/\" -m --source-map underscore-min.map -o underscore-min.js",
67 + "doc": "docco underscore.js",
68 + "lint": "eslint underscore.js test/*.js",
69 + "test": "npm run test-node && npm run lint",
70 + "test-browser": "npm i karma-phantomjs-launcher && ./node_modules/karma/bin/karma start",
71 + "test-node": "qunit-cli test/*.js"
72 + },
73 + "version": "1.8.3"
74 +}
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
1 +{
2 + "name": "npm-demo",
3 + "version": "1.0.0",
4 + "lockfileVersion": 1,
5 + "requires": true,
6 + "dependencies": {
7 + "underscore": {
8 + "version": "1.8.3",
9 + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz",
10 + "integrity": "sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI="
11 + }
12 + }
13 +}
1 +{
2 + "name": "npm-demo",
3 + "version": "1.0.0",
4 + "description": "",
5 + "main": "index.js",
6 + "scripts": {
7 + "test": "echo \"Error: no test specified\" && exit 1"
8 + },
9 + "author": "",
10 + "license": "ISC",
11 + "dependencies": {
12 + "underscore": "^1.8.3"
13 + }
14 +}