-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "vsm-dictionary-cacher",
"version": "1.2.2",
"description": "Wrapper around a VSM-dictionary, that manages a cache of string-match results",
"main": "src/VsmDictionaryCacher.js",
"scripts": {
"lint": "eslint src",
"test": "mocha \"src/**/*.test.js\" --check-leaks",
"testw": "mocha \"src/**/*.test.js\" --check-leaks --watch",
"build": "webpack --config webpack.config.js"
},
"keywords": [
"VSM",
"dictionary",
"cache"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vsm/vsm-dictionary-cacher"
},
"author": "Steven Vercruysse (http://stcruy.com)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/vsm/vsm-dictionary-cacher/issues"
},
"homepage": "https://github.com/vsm/vsm-dictionary-cacher#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"clean-webpack-plugin": "^1.0.1",
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"sinon": "^7.3.2",
"terser-webpack-plugin": "^1.4.1",
"vsm-dictionary-local": "^2.6.1",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"dependencies": {}
}