forked from CityOfZion/neon-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.29 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.29 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"devDependencies": {
"axios-mock-adapter": "^1.11.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.5.2",
"chai": "^4.0.2",
"chai-as-promised": "^7.1.0",
"clean-webpack-plugin": "^0.1.17",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"webpack": "^3.10.0",
"zopfli-webpack-plugin": "^0.1.0"
},
"name": "@cityofzion/neon-js",
"description": "Javascript libraries for neo wallet using https://github.com/neochainio/neowallet/blob/master/js/wallet.js as the original source.",
"version": "3.3.0",
"main": "lib/index.js",
"browser": "lib/browser.js",
"types": "src/index.d.ts",
"dependencies": {
"axios": "^0.17.1",
"bignumber.js": "^5.0.0",
"bs58": "^4.0.1",
"bs58check": "^2.1.1",
"crypto-js": "^3.1.9-1",
"elliptic": "^6.4.0",
"js-scrypt": "^0.2.0",
"loglevel": "^1.6.1",
"loglevel-plugin-prefix": "^0.7.2",
"scrypt-js": "^2.0.3",
"secure-random": "^1.1.1",
"semver": "^5.5.0",
"wif": "^2.0.6"
},
"scripts": {
"test": "./node_modules/.bin/mocha ./test",
"test:unit": "./node_modules/.bin/mocha ./test/unit",
"test:integration": "./node_modules/.bin/mocha ./test/integration",
"cover": "cross-env NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/mocha ./test && ./node_modules/.bin/nyc report --reporter=lcov",
"cover:unit": "cross-env NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/mocha ./test/unit && ./node_modules/.bin/nyc report --reporter=lcov",
"cover:integration": "cross-env NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/mocha ./test/integration && ./node_modules/.bin/nyc report --reporter=lcov",
"lint": "./node_modules/.bin/eslint ./src/**/*.js ./test/**/*.js",
"build:dev": "./node_modules/.bin/webpack --env.dev",
"build:prod": "./node_modules/.bin/webpack --env.prod",
"watch:test": "./node_modules/.bin/mocha ./test/unit --bail --watch --reporter=min",
"watch:docs": "cd docs && sphinx-autobuild . _build/html",
"build:docs": "cd docs && sphinx-versioning -g ../ -l ./conf.py build docs ../docs/_build/html",
"deploy:docs": "cd docs && sphinx-versioning -g ../ -l ./conf.py push docs gh-pages .",
"rebuild": "rm -rf ./node_modules && npm install && ./node_modules/.bin/webpack",
"prepublishOnly": "npm run lint && npm run build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CityOfZion/neon-js.git"
},
"keywords": [
"neo",
"antshares",
"javascript",
"libraries"
],
"author": "Ethan Fast <ejhfast@gmail.com> (https://github.com/Ejhfast)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CityOfZion/neon-js/issues"
},
"homepage": "https://github.com/CityOfZion/neon-js#readme",
"files": [
"lib/",
"src/"
],
"nyc": {
"require": [
"babel-register"
],
"exclude": [
"test"
],
"sourceMap": false,
"instrument": false
}
}