-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "bee-test-utility",
"version": "1.0.4",
"description": "The utility used to test bees that will be published in XcooBee network",
"main": "index.js",
"scripts": {
"flight": "node src/test-utility.js",
"test": "nyc --reporter=lcov npm run mocha",
"mocha": "_mocha test/*.js -R spec --exit --timeout 120000",
"debug-tests": "mocha --inspect-brk test/test-utility-test.js --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XcooBee/bee-test-utility.git"
},
"keywords": [
"test",
"bee"
],
"author": "Bilal Soylu",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/XcooBee/bee-test-utility/issues"
},
"homepage": "https://github.com/XcooBee/bee-test-utility#readme",
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.0",
"sinon": "^7.2.2"
},
"dependencies": {
"chalk": "^2.4.2",
"fs-extra": "^7.0.1",
"marked": "^0.8.0",
"marked-terminal": "^3.3.0"
}
}