-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "esjs",
"version": "1.1.4",
"description": "Elasticsearch-ish inverse indexed search engine for Node.",
"main": "lib/index.js",
"repository": "git@github.com:10eTechnology/esjs.git",
"author": "Aaron Craig <aaron@10etechnology.com>",
"license": "MIT",
"scripts": {
"build": "rm -rf ./lib && yarn build:umd",
"build:umd": "webpack --config webpack.config.js --sort-assets-by --progress",
"eslint": "./node_modules/.bin/eslint ./src ./test",
"performance": "node ./performance/index.js",
"reset": "rm -rf ./node_modules yarn.lock; yarn cache clean; yarn install",
"test": "mocha --require babel-register ./test/esjs.spec.js ./test/**/*.spec.js ./test/**/**/*.spec.js"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.24.0",
"benchmark": "^2.1.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"expect.js": "^0.3.1",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"webpack": "^4.12.0"
},
"dependencies": {
"porter-stemmer": "^0.9.1"
},
"peerDependencies": {
"porter-stemmer": "^0.9.1"
}
}