Skip to content

Commit 8bd2a95

Browse files
committed
Changed version
1 parent f1236cb commit 8bd2a95

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
{
22
"name": "@js-labs/data-structures",
3-
"version": "1.0.0-pre-alpha-6",
4-
"description":
5-
"There are neither a lot of resources on internet nor any book which guides and dictates best practices in the implementation of popular Data Structures using Javascript. The purpose of this library is to provide cooked implementation of populare data structures in javascript.",
3+
"version": "1.0.0-pre-alpha-7",
4+
"description": "There are neither a lot of resources on internet nor any book which guides and dictates best practices in the implementation of popular Data Structures using Javascript. The purpose of this library is to provide cooked implementation of populare data structures in javascript.",
65
"main": "index.js",
7-
"files": ["lib", "typings", "README.md"],
6+
"files": [
7+
"lib",
8+
"typings",
9+
"README.md"
10+
],
811
"scripts": {
912
"build:win32": "SET WEBPACK_ENV=build & webpack",
1013
"build": "export WEBPACK_ENV=build; node_modules/.bin/webpack",
1114
"dev:win32": "SET WEBPACK_ENV=dev & webpack",
1215
"dev": "export WEBPACK_ENV=dev; node_modules/.bin/webpack",
13-
"dev:watch:win32":
14-
"SET WEBPACK_ENV=dev & webpack --progress --colors --watch",
15-
"dev:watch":
16-
"export WEBPACK_ENV=dev; node_modules/.bin/webpack --progress --colors --watch",
16+
"dev:watch:win32": "SET WEBPACK_ENV=dev & webpack --progress --colors --watch",
17+
"dev:watch": "export WEBPACK_ENV=dev; node_modules/.bin/webpack --progress --colors --watch",
1718
"test:win32": "SET WEBPACK_ENV=dev & karma start",
1819
"test": "export WEBPACK_ENV=dev; karma start",
1920
"test:travis:win32": "SET WEBPACK_ENV=dev & karma start --single-run",
2021
"test:travis": "export WEBPACK_ENV=dev; karma start --single-run",
21-
"coveralls":
22-
"cat ./coverage/*/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
22+
"coveralls": "cat ./coverage/*/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
2323
"prepare": "npm run build & npm run dev",
2424
"publish": "npm publish --access public"
2525
},
@@ -60,4 +60,4 @@
6060
"uglifyjs-webpack-plugin": "^0.4.6",
6161
"webpack": "^2.0.9"
6262
}
63-
}
63+
}

0 commit comments

Comments
 (0)