Comparing version 0.12.3 to 0.13.0-beta.1
{ | ||
"name": "redash", | ||
"version": "0.12.3", | ||
"version": "0.13.0-beta.1", | ||
"description": "Compact library for writing performant functional JavaScript", | ||
"main": "dist/redash.js", | ||
"main": "redash.js", | ||
"directories": { | ||
@@ -10,29 +10,39 @@ "test": "tests" | ||
"files": [ | ||
"dist/redash.js" | ||
"./redash.js", | ||
"./redash.min.js", | ||
"./redash-installer.js", | ||
"./redash-installer.min.js" | ||
], | ||
"scripts": { | ||
"lint": "eslint src tests", | ||
"bundle": "rollup --format umd --name Redash -i src/redash.js -o dist/redash.js", | ||
"minify": "uglifyjs dist/redash.js --compress --mangle -o dist/redash.min.js", | ||
"bundle": "npm run bundle:main && npm run bundle:installer", | ||
"bundle:main": "rollup --format umd --name Redash -i src/bundles/index.js -o dist/redash.js", | ||
"bundle:installer": "rollup --format umd --name Redash -i src/bundles/installer.js -o dist/redash-installer.js", | ||
"minify": "npm run minify:main && npm run minify:installer", | ||
"minify:main": "uglifyjs dist/redash.js --compress --mangle -o dist/redash.min.js", | ||
"minify:installer": "uglifyjs dist/redash-installer.js --compress --mangle -o dist/redash-installer.min.js", | ||
"compile": "npm run bundle && npm run minify", | ||
"test": "node ./node_modules/karma/bin/karma start", | ||
"deploy": "npm run compile && npm run test" | ||
"test": "ava", | ||
"prepublish": "cp -r dist/. ." | ||
}, | ||
"author": "David Zukowski <david@zuko.me> (http://zuko.me)", | ||
"license": "ISC", | ||
"ava": { | ||
"files": [ | ||
"tests/**/*.spec.js" | ||
], | ||
"source": [ | ||
"src/**/*.js" | ||
], | ||
"match": [], | ||
"concurrency": 5, | ||
"failFast": true, | ||
"tap": false, | ||
"require": [] | ||
}, | ||
"devDependencies": { | ||
"ava": "^0.16.0", | ||
"chai": "^3.5.0", | ||
"dirty-chai": "^1.2.2", | ||
"eslint": "^2.13.1", | ||
"karma": "^0.13.22", | ||
"karma-better-sinon-chai": "^0.1.1", | ||
"karma-chai": "^0.1.0", | ||
"karma-coverage": "^0.5.3", | ||
"karma-coveralls": "^1.1.2", | ||
"karma-dirty-chai": "^1.0.2", | ||
"karma-mocha": "^0.2.1", | ||
"karma-phantomjs-launcher": "^0.2.1", | ||
"karma-rollup-preprocessor": "^2.0.2", | ||
"karma-sinon": "^1.0.5", | ||
"karma-spec-reporter": "0.0.22", | ||
"lodash": "^4.13.1", | ||
@@ -43,5 +53,4 @@ "mocha": "^2.3.4", | ||
"rollup": "^0.21.0", | ||
"sinon-chai": "^2.8.0", | ||
"uglify-js": "^2.6.1" | ||
} | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
24284
10
1026
1