-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 2.08 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
62
63
64
65
66
67
{
"name": "waves.js",
"productName": "Waves.js",
"version": "0.0.7-14",
"description": "Waves JavaScript Library: HTTP API client and auxiliary functions",
"main": "dist/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"clean": "rimraf lib dist es coverage",
"build": "webpack --mode=build",
"lint": "eslint src test",
"dev": "webpack --progress --colors --mode=dev",
"test": "flow && webpack --mode=dev && npm run test:unit",
"test:unit": "mocha --compilers js:babel-core/register --colors $(find test/unit -name '*spec.js')",
"test:integration": "mocha --compilers js:babel-core/register --colors $(find test/integration -name '*spec.js')",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gagarin55/waves.js.git"
},
"keywords": [
"Waves Platform",
"blockchain",
"JavaScript"
],
"author": "gagarin55",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gagarin55/waves.js/issues"
},
"homepage": "https://github.com/gagarin55/waves.js#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"eslint-config-react-app": "^0.5.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.40.0",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"webpack": "^1.14.0",
"yargs": "^6.6.0"
},
"dependencies": {
"axios": "^0.15.3",
"axlsign": "git+https://github.com/gagarin55/curve25519-js.git",
"base-x": "^2.0.4",
"blakejs": "^1.0.1",
"fast-sha256": "^1.0.0",
"js-sha3": "^0.5.7",
"text-encoding": "^0.6.4"
}
}