-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.55 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
53
54
55
56
57
58
59
60
61
{
"name": "redux-lunr",
"version": "0.2.0",
"description": "Lunr.js as middleware for Redux",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"directories": {
"test": "tests"
},
"watch": {
"test-dev": "*.test.js"
},
"scripts": {
"clean": "rm -rf dist && rm -rf lib",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/reduxLunr.js --config webpack.config.production.js",
"build:umd:min": "webpack src/index.js dist/reduxLunr.min.js --config webpack.config.production.js",
"build": "npm run build:lib && npm run build:umd",
"test-dev": "NODE_ENV=test node ./test | faucet",
"prepublish": "npm run clean && npm run build",
"watch": "npm-watch",
"test": "npm run watch -s"
},
"author": "Sven Roeterdink <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/swennemans/redux-lunr/issues"
},
"homepage": "https://github.com/swennemans/redux-lunr",
"dependencies": {
"lunr": "^0.6.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"babel-plugin-syntax-object-rest-spread": "^6.0.2",
"babel-preset-es2015": "^6.0.12",
"faucet": "0.0.1",
"npm-watch": "0.0.1",
"rimraf": "^2.4.3",
"sinon": "^1.17.2",
"tape": "^4.2.2",
"webpack": "^1.12.2"
},
"keywords": [
"redux",
"redux middleware",
"lunr",
"lunr.js",
"search"
],
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}