-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.84 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
{
"name": "bulksearch",
"version": "0.1.3",
"description": "Superfast, lightweight and read-write optimized full text search library.",
"homepage": "https://nextapps-de.github.io/xone/",
"author": "Thomas Wilkerling",
"license": "Apache-2.0",
"keywords": [],
"bugs": {
"url": "https://github.com/nextapps-de/bulksearch/issues",
"email": "[email protected]"
},
"main": "bulksearch.min.js",
"preferGlobal": false,
"bin": {},
"repository": {
"type": "git",
"url": "https://github.com/nextapps-de/bulksearch.git"
},
"scripts": {
"build": "node compile RELEASE=min SUPPORT_DEBUG=true SUPPORT_WORKER=true SUPPORT_BUILTINS=true SUPPORT_CACHE=true SUPPORT_ASYNC=true && exit 0",
"build-light": "node compile RELEASE=light && exit 0",
"build-custom": "node compile",
"build-lang": "node compile RELEASE=lang && exit 0",
"build-all": "npm run build && npm run build-light && npm run build-lang",
"test-production": "nyc --reporter=html --reporter=text mocha --timeout=3000 test --exit",
"test-light": "nyc --reporter=html --reporter=text mocha --timeout=3000 test/ --exit",
"test-develop": "nyc --reporter=html --reporter=text mocha --timeout=3000 --exit",
"test-browser": "mocha-phantomjs test/index.html",
"test": "npm run test-develop && npm run test-production && npm run test-browser",
"update": "node_modules/.bin/updtr --to non-breaking",
"coverage": "nyc report --reporter=lcov --reporter=text-lcov | coveralls"
},
"files": [
"bulksearch.js",
"bulksearch.min.js",
"lang/",
"test/"
],
"dependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"google-closure-compiler": "^20180204.0.0",
"mocha": "^5.0.4",
"mocha-phantomjs": "^4.1.0",
"nyc": "^11.5.0",
"phantomjs-prebuilt": "^2.1.16",
"updtr": "^2.0.0"
}
}