-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.96 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
{
"name": "fergies-inverted-index",
"version": "13.1.1",
"description": "An inverted index that allows javascript objects to be easily serialised and retrieved using promises and map-reduce",
"browser": "src/entrypoints/browser.js",
"main": "src/entrypoints/node.js",
"dependencies": {
"browser-level": "1.0.1",
"charwise": "3.0.1",
"events": "^3.3.0",
"traverse": "0.6.9"
},
"directories": {
"lib": "src"
},
"files": [
"src"
],
"devDependencies": {
"classic-level": "^1.4.1",
"diacritic": "^0.0.2",
"level-out": "^1.0.1",
"memory-level": "1.0.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"prettier": "^2.8.8",
"process": "^0.11.10",
"standard": "17.1.0",
"stemmer": "2.0.1",
"stopword": "2.0.8",
"stream-browserify": "^3.0.0",
"tape": "^5.8.1",
"tape-run": "^11.0.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"world-bank-dataset": "^1.0.0"
},
"prettier": "./.prettierrc.json",
"scripts": {
"build": "npm run empty-sandbox && webpack",
"empty-sandbox": "rm -rf test/sandbox && mkdir test/sandbox",
"lint": "standard --fix test/src/*.js src/*",
"symlink-for-test": "cd node_modules && ln -sf ../../fergies-inverted-index && cd ..",
"test": "npm run test-node && npm run test-browser && npm run lint",
"test-browser": "npm run symlink-for-test && npm run build && cat test/sandbox/browser-tests.js | tape-run",
"test-node": "npm run symlink-for-test && npm run empty-sandbox && tape test/src/*.js",
"test-script-tag-lib": "npm run build && open-cli test/src/index.html"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/fergiemcdowall/fergies-inverted-index"
},
"author": "Fergus McDowall",
"license": "MIT",
"bugs": {
"url": "https://github.com/fergiemcdowall/fergies-inverted-index/issues"
},
"homepage": "https://github.com/fergiemcdowall/fergies-inverted-index"
}