|
1 | 1 | {
|
2 | 2 | "name": "es6-data-structures",
|
3 | 3 | "version": "1.0.0-pre-alpha-4",
|
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.", |
| 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.", |
5 | 6 | "main": "index.js",
|
6 |
| - "files": [ |
7 |
| - "lib", |
8 |
| - "typings", |
9 |
| - "README.md" |
10 |
| - ], |
| 7 | + "files": ["lib", "typings", "README.md"], |
11 | 8 | "scripts": {
|
12 | 9 | "build:win32": "SET WEBPACK_ENV=build & webpack",
|
13 |
| - "build": "WEBPACK_ENV=build & node_modules/.bin/webpack", |
| 10 | + "build": "export WEBPACK_ENV=build; node_modules/.bin/webpack", |
14 | 11 | "dev:win32": "SET WEBPACK_ENV=dev & webpack",
|
15 |
| - "dev": "WEBPACK_ENV=dev & node_modules/.bin/webpack", |
16 |
| - "dev:watch:win32": "SET WEBPACK_ENV=dev & webpack --progress --colors --watch", |
17 |
| - "dev:watch": "WEBPACK_ENV=dev & node_modules/.bin/webpack --progress --colors --watch", |
| 12 | + "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", |
18 | 17 | "test:win32": "SET WEBPACK_ENV=dev & karma start",
|
19 |
| - "test": "WEBPACK_ENV=dev & karma start", |
| 18 | + "test": "export WEBPACK_ENV=dev; karma start", |
20 | 19 | "test:travis:win32": "SET WEBPACK_ENV=dev & karma start --single-run",
|
21 |
| - "test:travis": "WEBPACK_ENV=dev & karma start --single-run", |
22 |
| - "coveralls": "cat ./coverage/*/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", |
| 20 | + "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", |
23 | 23 | "prepublish": "npm build & npm run dev",
|
24 | 24 | "build&publish": "npm run prepublish & npm publish"
|
25 | 25 | },
|
|
0 commit comments