-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
101 lines (101 loc) · 6.89 KB
/
npm-debug.log
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/bin/node', '/usr/local/bin/npm', 'publish' ]
2 info using npm@1.4.28
3 info using node@v0.10.38
4 verbose publish [ '.' ]
5 verbose cache add [ '.', null ]
6 verbose cache add name=undefined spec="." args=[".",null]
7 verbose parsed url { protocol: null,
7 verbose parsed url slashes: null,
7 verbose parsed url auth: null,
7 verbose parsed url host: null,
7 verbose parsed url port: null,
7 verbose parsed url hostname: null,
7 verbose parsed url hash: null,
7 verbose parsed url search: null,
7 verbose parsed url query: null,
7 verbose parsed url pathname: '.',
7 verbose parsed url path: '.',
7 verbose parsed url href: '.' }
8 silly lockFile 3a52ce78- .
9 verbose lock . /Users/hal/.npm/3a52ce78-.lock
10 verbose tar pack [ '/Users/hal/.npm/currency-math/0.0.0/package.tgz', '.' ]
11 verbose tarball /Users/hal/.npm/currency-math/0.0.0/package.tgz
12 verbose folder .
13 info prepublish currency-math@0.0.0
14 silly lockFile 1f1177db-tar tar://.
15 verbose lock tar://. /Users/hal/.npm/1f1177db-tar.lock
16 silly lockFile b9c471be--currency-math-0-0-0-package-tgz tar:///Users/hal/.npm/currency-math/0.0.0/package.tgz
17 verbose lock tar:///Users/hal/.npm/currency-math/0.0.0/package.tgz /Users/hal/.npm/b9c471be--currency-math-0-0-0-package-tgz.lock
18 silly lockFile 1f1177db-tar tar://.
19 silly lockFile 1f1177db-tar tar://.
20 silly lockFile b9c471be--currency-math-0-0-0-package-tgz tar:///Users/hal/.npm/currency-math/0.0.0/package.tgz
21 silly lockFile b9c471be--currency-math-0-0-0-package-tgz tar:///Users/hal/.npm/currency-math/0.0.0/package.tgz
22 silly lockFile 4b7ec1f9--npm-currency-math-0-0-0-package /Users/hal/.npm/currency-math/0.0.0/package
23 verbose lock /Users/hal/.npm/currency-math/0.0.0/package /Users/hal/.npm/4b7ec1f9--npm-currency-math-0-0-0-package.lock
24 silly lockFile 4b7ec1f9--npm-currency-math-0-0-0-package /Users/hal/.npm/currency-math/0.0.0/package
25 silly lockFile 4b7ec1f9--npm-currency-math-0-0-0-package /Users/hal/.npm/currency-math/0.0.0/package
26 silly lockFile 3a52ce78- .
27 silly lockFile 3a52ce78- .
28 silly publish { name: 'currency-math',
28 silly publish version: '0.0.0',
28 silly publish description: 'Basic math operations for currency stored as strings.',
28 silly publish main: 'main.js',
28 silly publish scripts: { test: 'echo "Error: no test specified" && exit 1' },
28 silly publish repository:
28 silly publish { type: 'git',
28 silly publish url: 'https://github.com/gojohnnygo/currencyMath.git' },
28 silly publish keywords: [ 'currency', 'string', 'strings', 'math' ],
28 silly publish author: { name: 'Johnny Nguyen' },
28 silly publish license: 'ISC',
28 silly publish bugs: { url: 'https://github.com/gojohnnygo/currencyMath/issues' },
28 silly publish homepage: 'https://github.com/gojohnnygo/currencyMath',
28 silly publish devDependencies: { jasmine: '^2.3.1' },
28 silly publish readme: '# Currency Math\nWhy use currency-math? Because handling currency in strings is a pain.\n\n## Without currencyMath\n```\nvar product;\nvar value1 = \'$10.50\'\nvar value2 = \'$1.00\'\n\nvalue1 = value1.substr(1);\nvalue2 = value2.substr(1);\n\nproduct = parseFloat(value1) + parseFloat(value2);\n\n// incase JavaScript gets weird with floats\nproduct = Math.round(+(product + \'e\' + 2));\nproduct = +(product + \'e\' + (-2));\n\nproduct = \'$\' + product.toFixed(2);\nconsole.log(product) // \'$11.50\'\n```\n\n## With currencyMath\n```\nvar currency = require(\'currencyMath\');\nvar product = currency.sum(\'$10.50\', \'$1.00\'); \nconsole.log(product) // \'$11.50\'\n```\n\n## Examples\n```\nvar currency = require(\'currencyMath\');\n\nvar sum = currency.sum(\'$10.50\', \'$1.00\', \'$3.20\'); // \'$14.70\'\n\nvar multiply = currency.multiply(\'$4.00\', 4); // \'$16.00\'\nvar multiply = currency.multiply(\'$4.00\', 4, 4); // \'$64.00\'\nvar multiply = currency.multiply(\'$4.00\', \'50%\', \'25%\'); // \'$.50\'\nvar multiply = currency.multiply(\'$4.00\', true, \'50%\', \'25%\'); // \'$7.50\'\n\nvar divide = currency.divide(\'$10.00\', 2); // [\'$5.00\', \'$5.00\']\nvar divide = currency.divide(\'$10.00\', 3); // [\'$3.34\', \'$3.33\', \'$3.33\']\n\nvar percentOf = currency.percentOf(\'$10.00\', \'$5.00\') // \'50%\' \n```',
28 silly publish readmeFilename: 'README.md',
28 silly publish gitHead: '899f688081f6dee3c55ebee6eb2afc703fb67caa',
28 silly publish _id: 'currency-math@0.0.0',
28 silly publish _shasum: '5f77c2bb88ee34ca7c6c8d7032fdcee37c550e71',
28 silly publish _from: '.' }
29 verbose request where is /currency-math
30 verbose request registry https://registry.npmjs.org/
31 verbose request id c83a73fde024f32e
32 verbose url raw /currency-math
33 verbose url resolving [ 'https://registry.npmjs.org/', './currency-math' ]
34 verbose url resolved https://registry.npmjs.org/currency-math
35 verbose request where is https://registry.npmjs.org/currency-math
36 info trying registry request attempt 1 at 15:09:07
37 http PUT https://registry.npmjs.org/currency-math
38 http 403 https://registry.npmjs.org/currency-math
39 verbose headers { 'content-type': 'application/json',
39 verbose headers 'cache-control': 'max-age=60',
39 verbose headers 'content-length': '95',
39 verbose headers 'accept-ranges': 'bytes',
39 verbose headers date: 'Fri, 19 Jun 2015 22:09:09 GMT',
39 verbose headers via: '1.1 varnish',
39 verbose headers connection: 'keep-alive',
39 verbose headers 'x-served-by': 'cache-sjc3128-SJC',
39 verbose headers 'x-cache': 'MISS',
39 verbose headers 'x-cache-hits': '0',
39 verbose headers 'x-timer': 'S1434751748.009728,VS0,VE1321' }
40 error publish Failed PUT 403
41 error Error: "You cannot publish over the previously published version 0.0.0." : currency-math
41 error at RegClient.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:308:14)
41 error at Request._callback (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:246:65)
41 error at Request.self.callback (/usr/local/lib/node_modules/npm/node_modules/request/request.js:236:22)
41 error at Request.emit (events.js:98:17)
41 error at Request.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/request.js:1142:14)
41 error at Request.emit (events.js:117:20)
41 error at IncomingMessage.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/request.js:1096:12)
41 error at IncomingMessage.emit (events.js:117:20)
41 error at _stream_readable.js:944:16
41 error at process._tickCallback (node.js:448:13)
42 error If you need help, you may report this *entire* log,
42 error including the npm and node versions, at:
42 error <http://github.com/npm/npm/issues>
43 error System Darwin 14.3.0
44 error command "/usr/local/bin/node" "/usr/local/bin/npm" "publish"
45 error cwd /Users/hal/Documents/projects/currency-math
46 error node -v v0.10.38
47 error npm -v 1.4.28
48 verbose exit [ 1, true ]