-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "obyte",
"version": "0.1.23",
"description": "A pure and powerful JavaScript Obyte library",
"homepage": "https://obytejs.com",
"browser": "dist/obyte.min.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bonustrack/obyte.js.git"
},
"bugs": {
"url": "https://github.com/bonustrack/obyte.js/issues"
},
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "taskr cjs && webpack",
"lint": "eslint 'src/**/*.js'",
"prettier": "prettier 'src/**/*.js' --list-different",
"test": "jest",
"test:coverage": "jest --coverage"
},
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.26.0",
"create-hash": "^1.2.0",
"secp256k1": "^3.7.1",
"thirty-two": "^1.0.2",
"wif": "^2.0.6",
"ws": "^7.1.0"
},
"devDependencies": {
"@taskr/babel": "^1.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^23.6.0",
"prettier": "^1.18.2",
"taskr": "^1.1.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-visualizer-plugin": "^0.1.11"
}
}