-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "key-tree",
"version": "1.0.3",
"description": "Simple keyed tree data structure",
"main": "dist/key-tree.umd.js",
"jsnext:main": "index.js",
"scripts": {
"build": "npm run build-d && npm run build-umd",
"build-d": "rollup index.js --o dist/key-tree.js --f iife --name \"KeyTree\" && npm run minify-d",
"minify-d": "babel-minify dist/key-tree.js -o dist/key-tree.min.js --mangle",
"build-umd": "rollup index.js --o dist/key-tree.umd.js --f umd --name \"KeyTree\" && npm run minify-umd",
"minify-umd": "babel-minify dist/key-tree.umd.js -o dist/key-tree.umd.min.js --mangle",
"test": "jest",
"buildtest": "npm run build && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pshihn/key-tree.git"
},
"keywords": [
"hash-tree",
"key-tree",
"hash tree",
"key tree",
"keyed tree",
"keyed-tree",
"datastructure",
"tree"
],
"author": "Preet Shihn <preetshihn@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pshihn/key-tree/issues"
},
"homepage": "https://github.com/pshihn/key-tree#readme",
"devDependencies": {
"babel-minify": "^0.3.0",
"jest": "^22.4.3",
"rollup": "^0.57.1"
}
}