-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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
55
56
57
58
59
60
61
{
"name": "gun-util",
"version": "0.0.18",
"description": "Convenience and utility methods for GunDB",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.umd.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"gun": "cd node_modules/gun && npm start",
"build": "rollup -c",
"watch": "rollup -c -w",
"prepack": "rm -R dist 2> /dev/null; rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diatche/gun-util.git"
},
"author": "Pavel Diatchenko <[email protected]>",
"keywords": [
"gun",
"gundb",
"gunjs",
"gun.js",
"util",
"utils",
"utility",
"utilities"
],
"license": "MIT",
"dependencies": {
"@types/lodash": "^4.14.170",
"lodash": "^4.17.21",
"moment": "^2.29.1"
},
"peerDependencies": {
"gun": ">=0.2019.930"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/uuid": "^8.3.0",
"bufferutil": "^4.0.3",
"gun": "^0.2020.1232",
"jest": "^27.0.3",
"localenv": "^0.2.2",
"lodash": "^4.17.21",
"rollup": "^2.50.4",
"rollup-plugin-typescript2": "^0.30.0",
"text-encoding": "^0.7.0",
"ts-jest": "^27.0.1",
"typescript": "^4.3.2",
"utf-8-validate": "^5.0.5",
"uuid": "^8.3.2"
}
}