-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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": "echidna.js",
"version": "0.2.2",
"description": "Crypton is dead, long live Echidna.js",
"main": "lib/index.js",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@stablelib/base64": "^1.0.1",
"@stablelib/utf8": "^1.0.1",
"core-js": "^3.16.2",
"fast-sha256": "^1.3.0",
"pouchdb": "^7.2.2",
"pouchdb-find": "^7.2.2",
"transform-pouch": "^1.1.5",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"rimraf": "^3.0.2"
},
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "node test/node-test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devgeeks/echidna.js.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/devgeeks/echidna.js/issues"
},
"homepage": "https://github.com/devgeeks/echidna.js#readme",
"directories": {
"test": "test"
},
"author": "Tommy-Carlos Williams <[email protected]>"
}