This repository has been archived by the owner on Jun 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.9 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
64
65
66
67
68
69
70
71
72
{
"name": "generator-bonsai",
"version": "0.1.0-alpha",
"description": "A blockchain boilerplate generator from TechHQ to the world.",
"license": "Apache-2.0",
"author": {
"name": "Bernardo Vieira",
"email": "bernardo@techhq.io",
"url": "https://techhq.io"
},
"engines": {
"node": ">= 10.12.0",
"npm": ">= 6.4.0",
"yarn": ">= 1.10.0"
},
"homepage": "https://github.com/obernardovieira/generator-bonsai#readme",
"bugs": {
"url": "https://github.com/obernardovieira/generator-bonsai/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/obernardovieira/generator-bonsai.git"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"techhq",
"hq20",
"blockchain",
"ethereum",
"boilerplate",
"react",
"dapp",
"solidity",
"smart-contracts"
],
"scripts": {
"test": "mocha",
"coverage": "nyc --reporter=html --reporter=text npm test",
"coverage-ci": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint \"app/ethereum.js\" \"app/index.js\""
},
"dependencies": {
"slang": "0.3.0",
"yeoman-generator": "3.2.0"
},
"devDependencies": {
"eslint": "5.12.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.12.3",
"mocha": "6.1.4",
"yeoman-test": "1.9.1",
"yeoman-assert": "3.1.1",
"nyc": "13.3.0",
"coveralls": "3.0.3",
"mocha-lcov-reporter": "1.3.0"
},
"nyc": {
"all": true,
"include": [
"app/ethereum.js",
"app/index.js"
],
"exclude": [
"**/*.spec.js"
]
}
}