Socket
Socket
Sign inDemoInstall

js-search

Package Overview
Dependencies
5
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.5 to 1.3.6

.babelrc

6

CHANGELOG.md
# Changelog
## 1.3.6
Performance tuning and removal of eager deopts.
Behind the scenes, this release also includes a rewrite from TypeScript to Flowtype.
The external API should not be impacted by this rewrite however.
## 1.3.5

@@ -4,0 +10,0 @@ Fixed (hopefully) previous broken build.

53

package.json
{
"name": "js-search",
"version": "1.3.5",
"version": "1.3.6",
"description": "### What is it?",
"main": "dist/js-search.js",
"main": "dist/commonjs/index.js",
"directories": {
"test": "tests"
},
"dependencies": {},
"devDependencies": {
"fly": "^1.4.1",
"fly-ts": "^0.2.4",
"fly-uglify": "^3.0.0",
"jasmine": "^2.3.1",
"jasmine-core": "^2.3.4",
"karma": "^0.13.3",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"typescript": "^1.5.3",
"uglify": "^0.1.5"
"babel-cli": "^6.22.2",
"babel-loader": "^6.2.10",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"cross-env": "^3.1.4",
"flow-bin": "^0.38.0",
"jest": "^18.1.0",
"rimraf": "^2.5.4",
"uglify": "^0.1.5",
"uglify-js": "^2.7.5",
"webpack": "^2.2.1"
},
"scripts": {
"build": "npm run compile && npm run test",
"compile": "fly",
"dev": "fly watchAndBuild",
"test": "karma start karma.conf.js",
"tdd": "karma start karma.conf.js --auto-watch --no-single-run"
"build": "npm run build:commonjs && npm run build:umd",
"build:commonjs": "cross-env NODE_ENV=production babel source --out-dir dist/commonjs --source-maps --ignore test.js",
"build:umd": "cross-env NODE_ENV=production webpack --config webpack.config.js --bail",
"clean": "rimraf dist",
"flow": "flow source",
"prebuild": "flow",
"prebuild:commonjs": "rimraf dist/commonjs",
"prebuild:umd": "rimraf dist/umd",
"postbuild:umd": "uglifyjs dist/umd/js-search.js -o dist/umd/js-search.min.js --source-map dist/umd/js-search.min.js.map -p 5 -c -m",
"pretest": "flow",
"test": "jest",
"tdd": "jest --watch"
},

@@ -47,3 +54,11 @@ "author": "Brian Vaughn <briandavidvaughn@gmail.com> (https://github.com/bvaughn/)",

},
"homepage": "https://github.com/bvaughn/js-search"
"homepage": "https://github.com/bvaughn/js-search",
"jest": {
"setupFiles": [],
"testPathDirs": [
"./source"
],
"testRegex": "\\.test\\.js$",
"verbose": true
}
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc