Skip to content

Commit 23d77ac

Browse files
committed
Update
* Fixes issues with `jslint` and `jscs` * Removed unused dep. * `package.json` fix * And other small fixes
1 parent dd73fc3 commit 23d77ac

File tree

8 files changed

+872
-319
lines changed

8 files changed

+872
-319
lines changed

dist/Tween.js

Lines changed: 501 additions & 248 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Tween.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Tween.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Tween.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,60 @@
11
{
2-
"name": "es6-tween",
3-
"version": "1.0.3",
4-
"description": "ES6 implementation of amazing tween.js",
5-
"main": "dist/Tween.js",
6-
"directories": {
7-
"example": "examples"
8-
},
9-
"scripts": {
10-
"build": "webpack --env build",
11-
"source": "webpack --progress --colors --env dev",
12-
"dev": "webpack --progress --colors --watch --env dev",
13-
"dist": "npm run source && npm run build",
14-
"dist_test": "npm run dist && npm run test",
15-
"test": "npm run test-unit && npm run test-correctness && npm run test-style",
16-
"test-unit": "nodeunit test/unit/nodeunitheadless.js",
17-
"test-correctness": "jshint --config test/jshintrc src/Tween.js",
18-
"test-style": "jscs --config test/jscs.json src/Tween.js",
19-
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
20-
},
21-
"repository": {
22-
"type": "git",
23-
"url": "git+https://github.com/tweenjs/es6-tween.git"
24-
},
25-
"keywords": [
26-
"tween",
27-
"tweening",
28-
"es6",
29-
"numeric",
30-
"interpolation",
31-
"easing",
32-
"emit"
33-
],
34-
"author": "sole, dalisoft",
35-
"license": "MIT",
36-
"bugs": {
37-
"url": "https://github.com/tweenjs/es6-tween/issues"
38-
},
39-
"homepage": "https://github.com/tweenjs/es6-tween#readme",
40-
"devDependencies": {
41-
"babel": "6.5.2",
42-
"babel-core": "6.22.1",
43-
"babel-eslint": "7.1.1",
44-
"babel-loader": "6.2.10",
45-
"babel-plugin-add-module-exports": "0.1.2",
46-
"babel-plugin-transform-es2015-classes": "latest",
47-
"babel-plugin-transform-proto-to-assign": "latest",
48-
"babel-plugin-transform-react-jsx": "latest",
49-
"babel-preset-es2015": "6.22.0",
50-
"eslint": "1.7.2",
51-
"eslint-loader": "1.6.1",
52-
"webpack": "2.2.1",
53-
"yargs": "6.6.0",
54-
"jscs": "^2.2.0",
55-
"jshint": "^2.8.0",
56-
"nodeunit": "^0.9.1",
57-
"semantic-release": "^6.3.2"
58-
},
59-
"dependencies": {}
2+
"name": "es6-tween",
3+
"version": "1.0.4",
4+
"description": "ES6 implementation of amazing tween.js",
5+
"main": "dist/Tween.js",
6+
"directories": {
7+
"example": "examples"
8+
},
9+
"scripts": {
10+
"build": "webpack --env build",
11+
"source": "webpack --progress --colors --env dev",
12+
"dev": "webpack --progress --colors --watch --env dev",
13+
"dist": "npm run source && npm run build",
14+
"dist_test": "npm run dist && npm run test",
15+
"test": "npm run test-unit && npm run test-correctness && npm run test-style",
16+
"test-unit": "nodeunit test/unit/nodeunitheadless.js",
17+
"test-correctness": "jshint --config test/jshintrc src/Tween.js",
18+
"test-style": "jscs --config test/jscs.json src/Tween.js",
19+
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
20+
},
21+
"repository": {
22+
"type": "git",
23+
"url": "git+https://github.com/tweenjs/es6-tween.git"
24+
},
25+
"keywords": [
26+
"tween",
27+
"tweening",
28+
"es6",
29+
"numeric",
30+
"interpolation",
31+
"easing",
32+
"emit"
33+
],
34+
"author": "sole, dalisoft",
35+
"license": "MIT",
36+
"bugs": {
37+
"url": "https://github.com/tweenjs/es6-tween/issues"
38+
},
39+
"homepage": "https://github.com/tweenjs/es6-tween#readme",
40+
"devDependencies": {
41+
"babel": "6.5.2",
42+
"babel-core": "6.22.1",
43+
"babel-eslint": "7.1.1",
44+
"babel-loader": "6.2.10",
45+
"babel-plugin-add-module-exports": "0.1.2",
46+
"babel-plugin-transform-es2015-classes": "latest",
47+
"babel-plugin-transform-proto-to-assign": "latest",
48+
"babel-plugin-transform-react-jsx": "latest",
49+
"babel-preset-es2015": "6.22.0",
50+
"eslint": "1.7.2",
51+
"eslint-loader": "1.6.1",
52+
"webpack": "2.2.1",
53+
"yargs": "6.6.0",
54+
"jscs": "^2.2.0",
55+
"jshint": "^2.8.0",
56+
"nodeunit": "^0.9.1",
57+
"semantic-release": "^6.3.2"
58+
},
59+
"dependencies": {}
6060
}

0 commit comments

Comments
 (0)