-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "tiny-trie",
"version": "0.2.6",
"description": "JS Trie / DAWG classes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "$(npm bin)/tslint src/**/*.ts",
"build": "rm -rf lib/ && $(npm bin)/tsc --declaration",
"build-dist": "$(npm bin)/webpack",
"build-min": "NODE_ENV=production $(npm bin)/webpack",
"build-doc": "$(npm bin)/typedoc --out docs/",
"build-all": "npm run build && npm run build-dist && npm run build-min && npm run build-doc",
"test": "npm run lint && $(npm bin)/mocha --compilers ts:ts-node/register src/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jnu/tiny-trie.git"
},
"keywords": [
"trie",
"dawg",
"dict",
"dictionary",
"wordlist"
],
"author": "Joe Nudell",
"license": "MIT",
"bugs": {
"url": "https://github.com/jnu/tiny-trie/issues"
},
"homepage": "https://github.com/jnu/tiny-trie#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.0.15",
"benchmark": "^1.0.0",
"chai": "^4.1.2",
"mocha": "^2.3.3",
"tap": "^2.2.0",
"ts-loader": "^4.0.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typedoc": "^0.11.1",
"typescript": "^2.7.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"dependencies": {}
}