-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 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
43
{
"name": "@worldbrain/memex-stemmer",
"version": "0.1.0",
"description": "Storex stemmer used by Memex",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"prepare": "tsc",
"prepare:watch": "npm run prepare -- -w",
"test:jest": "jest --verbose --config=.jest-config.json",
"test:jest:watch": "jest --verbose --watch --config=.jest-config.json",
"test:mocha": "mocha --require ts-node/register 'ts/**/*.test.ts'",
"test:mocha:watch": "mocha -r source-map-support/register -r ts-node/register 'ts/**/*.test.ts' --watch --watch-extensions ts"
},
"keywords": [
"storage",
"graph",
"database",
"typescript"
],
"author": "Vincent den Boer",
"repository": {
"type": "git",
"url": "https://github.com/WorldBrain/memex-stemmer.git"
},
"dependencies": {
"cheerio": "1.0.0-rc.6",
"url-regex": "^4.1.1"
},
"devDependencies": {
"@types/chai": "^4.0.6",
"@types/events": "^1.2.0",
"@types/mocha": "^2.2.44",
"@types/node": "^10.9.4",
"chai": "^4.1.2",
"expect": "^23.5.0",
"mocha": "^4.0.1",
"sinon": "^4.1.2",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
}
}