-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "@teamawesome/multi-dict",
"version": "2.0.4",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"dev": "babel src --out-dir dist --watch --source-maps inline",
"lint": "eslint src/",
"test": "mocha",
"prepublishOnly": "npm run lint && npm run build && npm run test "
},
"author": "Tom Hooijenga <[email protected]>",
"homepage": "https://github.com/tomhooijenga/multi-dict",
"license": "MIT",
"keywords": [
"dict",
"dictionary",
"multiple",
"cache",
"store",
"complex",
"trie",
"triemap"
],
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^10.0.0",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^16.1.0"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"@teamawesome/access": "^1.0.17"
},
"types": "./multi-dict.d.ts"
}