-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "iotadpow",
"version": "0.0.0-semantic-release-controlled",
"description": "Delegate the POW to a node by paying a small fee.",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha ./test/*.test.js",
"watch:test": "npm t -- -w",
"eslint": "eslint './src/*.js' './test/*.js' --fix",
"cover": "nyc npm t",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"check-coverage": "nyc check-coverage --functions 100",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glumb/iotadpow.git"
},
"files": [
"dist"
],
"keywords": [
"IOTA",
"POW",
"iri"
],
"author": "Maximilian Beck <maximilian@glumb.de> (http://glumb.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/glumb/iotadpow/issues"
},
"homepage": "https://github.com/glumb/iotadpow#readme",
"dependencies": {
"debug": "3.1.0",
"http": "0.0.0",
"http-proxy": "1.16.2",
"iota.lib.js": "0.4.7"
},
"devDependencies": {
"chai": "4.1.2",
"codecov.io": "0.1.6",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.17.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.6.1",
"istanbul": "0.4.5",
"mocha": "5.0.0",
"nyc": "11.4.1",
"semantic-release": "12.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"directories": {
"test": "test"
}
}