-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.51 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
{
"name": "graphinius-recommenders",
"version": "1.0.0",
"private": true,
"description": "Graphinius-based recommender algorithms for iNodis client, based on other popular graph DB recommenders",
"main": "index.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"prod": "NODE_ENV=production rollup -cw",
"test:jobs": "G_LOG=debug jest -c jest.config.js --watch jobs",
"test:all": "jest -c jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cassinius/graphinius-recommenders.git"
},
"author": "Bernd Malle",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/cassinius/graphinius-recommenders/issues"
},
"homepage": "https://github.com/cassinius/graphinius-recommenders#readme",
"dependencies": {
"idb": "^4.0.4",
"js-search": "^1.4.3"
},
"devDependencies": {
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.19",
"@types/lunr": "^2.3.3",
"@types/node": "^14.14.13",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"rollup": "^1.22.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-livereload": "^1.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
}
}