-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 910 Bytes
/
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
{
"name": "compact-prefix-tree",
"version": "2.0.2",
"description": "A serializable compact prefix trie",
"main": "index.js",
"scripts": {
"build": "npm run build:amd && npm run build:cjs && npm run build:esm",
"clean": "rm -rf index.js index.d.ts amd/ cjs/",
"dev": "tsc -w",
"prepare": "npm run build",
"test": "jest",
"build:amd": "tsc index.ts -m amd -t es6 --outDir amd",
"build:cjs": "tsc index.ts -m commonjs -t es6 --outDir cjs",
"build:esm": "tsc index.ts -m esnext -t esnext -d"
},
"keywords": [
"compact-prefix-tree",
"compact-radix-tree",
"compact-trie",
"data-structure",
"patricia-tree",
"prefix-tree",
"prefix",
"radix-tree",
"trie"
],
"author": "Sid Vishnoi <[email protected]>",
"license": "MIT",
"types": "index.d.ts",
"devDependencies": {
"jest": "^23.6.0",
"typescript": "^3.5.3"
}
}