-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "@rsksmart/rsk-utils",
"version": "1.1.0",
"description": "A collection of JS utility functions for RSK",
"main": "dist/index.js",
"scripts": {
"lint": "npx eslint src/**/* --quiet",
"test:node": "npx nyc mocha test/**/*.spec.js",
"test:browser": "npx karma start",
"test": "npm run test:node && npm run test:browser",
"doc": "node ./.doc/makeDoc.js > Documentation.md",
"build": "npm run lint && npm run doc && npx babel src -d dist --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsksmart/rsk-utils.git"
},
"keywords": [
"rsk",
"utils"
],
"author": "emi",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsksmart/rsk-utils/issues"
},
"homepage": "https://github.com/rsksmart/rsk-utils#readme",
"dependencies": {
"keccak": "^2.0.0",
"rlp": "^2.2.4"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"@rsksmart/rskjs-jsdoc2md": "^1.0.0",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bytes": "^0.1.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"karma": "^5.0.9",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^2.0.1",
"mocha": "^7.1.1",
"nyc": "^14.1.1"
}
}