forked from krisk/Fuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.23 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
43
44
45
46
47
48
49
50
51
52
{
"name": "fuse.js",
"author": {
"name": "Kirollos Risk",
"email": "kirollos@gmail.com",
"url": "http://kiro.me"
},
"version": "3.4.5",
"description": "Lightweight fuzzy-search",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/krisk/Fuse.git"
},
"homepage": "http://fusejs.io",
"keywords": [
"fuzzy",
"bitap"
],
"main": "dist/fuse.js",
"types": "dist/fuse.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"pretest": "npm run build",
"test": "jest",
"prebuild": "npm run clean",
"build": "webpack --config ./configs/webpack.prod.js",
"predev": "npm run clean",
"dev": "webpack --progress --colors --watch --config ./configs/webpack.dev.js"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^5.0.0",
"jest": "^24.3.1",
"rimraf": "^2.6.3",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.29.2",
"webpack-cli": "^3.2.3",
"webpack-merge": "^4.2.1"
},
"engines": {
"node": ">=6"
},
"files": [
"dist/"
]
}