-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "easy-trie",
"version": "1.0.3",
"description": "An easy to easy TypeScript implementation of the Trie data structure for ",
"main": "bundle.js",
"scripts": {
"build": "npx webpack --config=webpack.config.js",
"prod": "webpack --mode production",
"start": "node dist/bundle.js",
"test": "jasmine-ts --config=jasmine.json",
"lint": "eslint src --fix --ext .ts",
"compileonsave": "npm run build -- -w"
},
"author": "arghasarkar",
"repository": {
"type": "git",
"url": "git+https://github.com/arghasarkar/easy-trie.git"
},
"keywords": [
"trie",
"easy-trie",
"search",
"auto-complete"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/arghasarkar/easy-trie/issues"
},
"homepage": "https://github.com/arghasarkar/easy-trie#readme",
"devDependencies": {
"@types/jasmine": "^3.5.11",
"babel-eslint": "^10.1.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^5.0.2",
"jasmine-ts": "^0.3.0",
"ts-loader": "^8.0.0",
"ts-node": "^8.10.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"typescript": "^3.9.7"
}
}