forked from CityOfZion/neon-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.61 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
{
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"chai": "^4.0.2",
"chai-as-promised": "^7.1.0",
"elliptic": "^6.4.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.1",
"mocha": "^3.4.2",
"webpack": "^3.0.0"
},
"name": "neon-js",
"description": "Javascript libraries for neo wallet using https://github.com/neochainio/neowallet/blob/master/js/wallet.js as the original source.",
"version": "1.0.0",
"main": "lib/index.js",
"dependencies": {
"Buffer": "^0.0.0",
"axios": "^0.16.2",
"base-x": "^3.0.2",
"bigi": "^1.4.2",
"buffer": "^5.0.6",
"crypto-js": "^3.1.9-1",
"ecdsa": "^0.7.0",
"ecurve": "^1.0.5",
"elliptic": "^6.4.0",
"fs": "^0.0.1-security",
"js-scrypt": "^0.2.0",
"secp256k1": "^3.3.0",
"secure-random": "^1.1.1",
"sql.js": "^0.4.0",
"wif": "^2.0.6"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register --recursive ./tests/**.js",
"build": "webpack",
"prepublish": "npm run build",
"lint": "eslint src/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CityOfZion/neon-js.git"
},
"keywords": [
"neo",
"antshares",
"javascript",
"libraries"
],
"author": "Ethan Fast <[email protected]> (https://github.com/Ejhfast)",
"license": "ISC",
"bugs": {
"url": "https://github.com/CityOfZion/neon-js/issues"
},
"homepage": "https://github.com/CityOfZion/neon-js#readme"
}