-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnpm-debug.log
105 lines (105 loc) · 8.81 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
102
103
104
105
0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'publish' ]
2 info using [email protected]
3 info using [email protected]
4 verbose publish [ '.' ]
5 silly cache add args [ '.', null ]
6 verbose cache add spec .
7 silly cache add parsed spec Result {
7 silly cache add raw: '.',
7 silly cache add scope: null,
7 silly cache add name: null,
7 silly cache add rawSpec: '.',
7 silly cache add spec: 'D:\\Development\\javascript\\UnitBezier',
7 silly cache add type: 'directory' }
8 verbose addLocalDirectory C:\Users\User\AppData\Roaming\npm-cache\Unit-Bezier\1.0.1\package.tgz not in flight; packing
9 verbose tar pack [ 'C:\\Users\\User\\AppData\\Roaming\\npm-cache\\Unit-Bezier\\1.0.1\\package.tgz',
9 verbose tar pack 'D:\\Development\\javascript\\UnitBezier' ]
10 verbose tarball C:\Users\User\AppData\Roaming\npm-cache\Unit-Bezier\1.0.1\package.tgz
11 verbose folder D:\Development\javascript\UnitBezier
12 info prepublish [email protected]
13 verbose addLocalTarball adding from inside cache C:\Users\User\AppData\Roaming\npm-cache\Unit-Bezier\1.0.1\package.tgz
14 silly cache afterAdd [email protected]
15 verbose afterAdd C:\Users\User\AppData\Roaming\npm-cache\Unit-Bezier\1.0.1\package\package.json not in flight; writing
16 verbose afterAdd C:\Users\User\AppData\Roaming\npm-cache\Unit-Bezier\1.0.1\package\package.json written
17 silly publish { name: 'Unit-Bezier',
17 silly publish version: '1.0.1',
17 silly publish license: 'MIT',
17 silly publish description: 'Combination of Mozilla and Chromium implementations of Bezier Curves used for animation interpolation for Javascript',
17 silly publish author: { name: 'Jacob Peters', email: '[email protected]' },
17 silly publish main: './unit-bezier.js',
17 silly publish repository:
17 silly publish { type: 'git',
17 silly publish url: 'git+https://github.com/jacobcpeters/Unit-Bezier.git' },
17 silly publish bugs: { url: 'https://github.com/jacobcpeters/Unit-Bezier/issues' },
17 silly publish keywords: [ 'bezier', 'animation', 'timing', 'node' ],
17 silly publish devDependencies:
17 silly publish { del: '^2.0.2',
17 silly publish gulp: '^3.9.0',
17 silly publish 'gulp-shell': '^0.5.1',
17 silly publish 'gulp-uglify': '^1.4.2',
17 silly publish jsdoc: '^3.3.3',
17 silly publish minami: '^1.1.1' },
17 silly publish preferGlobal: false,
17 silly publish private: false,
17 silly publish readme: '# Unit-Bezier\r\n\r\n> A Combination of Mozilla and Chromium implementations of Bezier Curves used for animation interpolation for Javascript\r\n\r\nUnit-Bezier takes optimizations from both Mozilla and Chromium timing function code and combines them into performant Javascript. It is compliant with both browsers\' tests. \r\n\r\n## Getting Started\r\n\r\n### Download / Clone\r\n\r\nInstall with npm:\r\n\r\n```bash\r\nnpm install Unit-Bezier\r\n```\r\n\r\nClone the repo using Git:\r\n\r\n```bash\r\ngit clone --bare https://github.com/jacobcpeters/Unit-Bezier.git\r\n```\r\n\r\nAlternatively you can [download](https://github.com/jacobcpeters/Unit-Bezier/archive/master.zip) this repository.\r\n\r\n### Using Unit-Bezier\r\n\r\nUse the \'new\' operator to construct a new UnitBezier object for your function/module/class.\r\nThe first parameter of the constructor is an array that contains the control points for the Bezier Curve [x1, y1, x2, y2]. The second parameter is the epsilon that controls the desired accuracy of the estimations.\r\n\r\n```js\r\nvar bezier = new UnitBezier(controlPoints, epsilon);\r\n```\r\n\r\n#### Easing Aliases\r\n\r\nEasy to use aliases are available for common easing types in the UnitBezier.easings object.\r\n\r\n```js\r\nvar bezier = new UnitBezier(UnitBezier.easings.easeInOut, 0.005);\r\n```\r\n\r\n###### Table of available aliases:\r\n\r\n| Easing Name | Control Points |\r\n|:--------------|:-------------------------------|\r\n| linear | [0.0, 0.0, 1.0, 1.0] |\r\n| ease | [0.25, 0.1, 0.25, 1.0] |\r\n| easeIn | [0.42, 0.0, 1.0, 1.0] |\r\n| easeInOut | [0.42, 0.0, 0.58, 1.0] |\r\n| easeOut | [0.0, 0.0, 0.58, 1.0] |\r\n| easeInBack | [0.6, -0.28, 0.735, 0.045] |\r\n| easeOutBack | [0.175, 0.885, 0.32, 1.275] |\r\n| easeInOutBack | [0.680, -0.550, 0.265, 1.550] |\r\n\r\n####Code example:\r\n\r\n```js\r\nvar bezier = new UnitBezier([0.0, 0.0, 1.0, 1.0], 0.000001), //linear Bezier Curve\r\n target = document.getElementById(\'animated-opacity\'),\r\n animationLength = 1000, // 1000ms = 1s\r\n startTime = Date.now();\r\n \r\nfunction animateOpacity() {\r\n var timeSinceAnimationStarted = Date.now() - startTime;\r\n \r\n target.style.opacity = 1 * bezier.calc(timeSinceAnimationStarted / animationLength);\r\n \r\n if(timeSinceAnimationStarted < animationLength) {\r\n requestAnimationFrame(animateOpacity);\r\n }\r\n}\r\n\r\nrequestAnimationFrame(animateOpacity);\r\n```\r\n\r\n## Feature requests\r\n\r\nIf Unit-Bezier doesn\'t support a feature you require, please put a request in the issues tracker. \r\n\r\n\r\n## License\r\n\r\n© Jacob Peters, 2015. Licensed under an [MIT](https://github.com/jacobcpeters/ResponsiveLazyVids/blob/master/LICENSE) license.',
17 silly publish readmeFilename: 'README.md',
17 silly publish gitHead: '6607f1b029c136ad89c9c645f8b1e91f08be0358',
17 silly publish homepage: 'https://github.com/jacobcpeters/Unit-Bezier#readme',
17 silly publish _id: '[email protected]',
17 silly publish scripts: {},
17 silly publish _shasum: 'f04e7843635214d5dd18f623ae3398e76511e07b',
17 silly publish _from: '.' }
18 verbose getPublishConfig undefined
19 silly mapToRegistry name Unit-Bezier
20 silly mapToRegistry using default registry
21 silly mapToRegistry registry https://registry.npmjs.org/
22 silly mapToRegistry uri https://registry.npmjs.org/Unit-Bezier
23 verbose publish registryBase https://registry.npmjs.org/
24 silly publish uploading C:\Users\User\AppData\Roaming\npm-cache\Unit-Bezier\1.0.1\package.tgz
25 verbose request uri https://registry.npmjs.org/Unit-Bezier
26 verbose request sending authorization for write operation
27 info attempt registry request try #1 at 5:46:57 AM
28 verbose request using bearer token for auth
29 verbose request id 8ad34878a1ac0bfd
30 http request PUT https://registry.npmjs.org/Unit-Bezier
31 http 403 https://registry.npmjs.org/Unit-Bezier
32 verbose headers { 'content-type': 'application/json',
32 verbose headers 'cache-control': 'max-age=300',
32 verbose headers 'content-length': '95',
32 verbose headers 'accept-ranges': 'bytes',
32 verbose headers date: 'Sat, 30 Apr 2016 09:46:59 GMT',
32 verbose headers via: '1.1 varnish',
32 verbose headers connection: 'keep-alive',
32 verbose headers 'x-served-by': 'cache-dfw1838-DFW',
32 verbose headers 'x-cache': 'MISS',
32 verbose headers 'x-cache-hits': '0',
32 verbose headers 'x-timer': 'S1462009617.328406,VS0,VE1974',
32 verbose headers vary: 'Accept-Encoding' }
33 verbose request invalidating C:\Users\User\AppData\Roaming\npm-cache\registry.npmjs.org\Unit-Bezier on PUT
34 error publish Failed PUT 403
35 verbose stack Error: "You cannot publish over the previously published version 1.0.1." : Unit-Bezier
35 verbose stack at makeError (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-registry-client\lib\request.js:264:12)
35 verbose stack at CachingRegistryClient.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-registry-client\lib\request.js:252:14)
35 verbose stack at Request._callback (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-registry-client\lib\request.js:172:14)
35 verbose stack at Request.self.callback (C:\Program Files\nodejs\node_modules\npm\node_modules\request\request.js:198:22)
35 verbose stack at emitTwo (events.js:87:13)
35 verbose stack at Request.emit (events.js:172:7)
35 verbose stack at Request.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\request\request.js:1063:14)
35 verbose stack at emitOne (events.js:82:20)
35 verbose stack at Request.emit (events.js:169:7)
35 verbose stack at IncomingMessage.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\request\request.js:1009:12)
36 verbose statusCode 403
37 verbose pkgid Unit-Bezier
38 verbose cwd D:\Development\javascript\UnitBezier
39 error Windows_NT 10.0.10586
40 error argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "publish"
41 error node v4.2.1
42 error npm v2.14.7
43 error code E403
44 error "You cannot publish over the previously published version 1.0.1." : Unit-Bezier
45 error If you need help, you may report this error at:
45 error <https://github.com/npm/npm/issues>
46 verbose exit [ 1, true ]