This repository was archived by the owner on Jun 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.53 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
{
"name": "lisk-js",
"version": "0.4.5",
"description": "JavaScript library for sending Lisk transactions from the client or server",
"main": "./dist-node/index.js",
"engines": {
"node": ">=6.3 <=9.5",
"npm": ">=3 <=5"
},
"scripts": {
"prestart": "./bin/prestart.sh",
"start": "./bin/start.sh",
"test": "nyc mocha test --recursive",
"test:watch": "chokidar \"./(src|test)/**/*.js\" -c \"mocha test --recursive\" --initial",
"test:node": "npm run build:check && BABEL_ENV=buildcheck mocha test --recursive",
"test:browser": "cypress run --env ROOT_DIR=\"${PWD##*/}\"",
"cover": "nyc report --reporter=lcov",
"eslint": "grunt eslint",
"prettier": "prettier --write \"browsertest/{setup,runTests}.js\" \"{cypress/integration,src,test}/**/*.js\"",
"serve:browsertest": "http-server browsertest",
"jenkins": "grunt jenkins --verbose",
"build": "grunt build",
"build:check": "node -e \"require('./dist-node')\"",
"build:browsertest": "grunt build-browsertest",
"precommit": "lint-staged && npm run eslint",
"prepush": "npm run eslint && npm test",
"prepublishOnly": "npm run prepush && npm run build",
"prepublish:browser": "npm run prepublishOnly",
"publish:browser": "./bin/publish_browser.sh",
"postpublish": "npm run publish:browser"
},
"repository": {
"type": "git",
"url": "git@github.com:LiskHQ/lisk-js.git"
},
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "GPL-3.0",
"dependencies": {
"babel-runtime": "=6.26.0",
"bip39": "=2.4.0",
"browserify-bignum": "=1.3.0-2",
"ed2curve": "=0.2.1",
"js-nacl": "LiskHQ/js-nacl#6dc1417",
"popsicle": "=9.1.0"
},
"devDependencies": {
"babel-cli": "=6.24.1",
"babel-plugin-istanbul": "=4.1.4",
"babel-plugin-module-resolver": "=3.0.0",
"babel-plugin-rewire": "=1.1.0",
"babel-plugin-transform-runtime": "=6.23.0",
"babel-preset-env": "=1.6.0",
"chokidar-cli": "=1.2.0",
"coveralls": "=2.13.1",
"cypress": "=2.0.2",
"eslint-config-airbnb-base": "=11.3.1",
"eslint-config-lisk-base": "=0.1.0",
"eslint-plugin-import": "=2.7.0",
"grunt": "=1.0.1",
"grunt-browserify": "=5.0.0",
"grunt-contrib-uglify": "=3.0.1",
"grunt-coveralls": "=1.0.1",
"grunt-eslint": "=20.0.0",
"grunt-exec": "=2.0.0",
"http-server": "=0.10.0",
"husky": "=0.14.3",
"lint-staged": "=4.2.3",
"load-grunt-tasks": "=3.5.2",
"mocha": "=3.4.2",
"mocha-lcov-reporter": "=1.3.0",
"nyc": "=11.3.0",
"prettier": "=1.7.4",
"rewireify": "=0.2.5",
"should": "=11.2.1",
"should-sinon": "=0.0.6",
"sinon": "=2.2.0"
}
}