This repository was archived by the owner on Mar 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 KB
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
{
"name": "consus-core",
"description": "Common modules for the Consus project",
"version": "0.6.0",
"author": "The Four Fifths",
"contributors": [
"Jordan Longato",
"Matthew Mahnke",
"Quentin Caffero",
"Tony Fay",
"Trevin Hofmann <trevinhofmann@gmail.com>"
],
"license": "Unlicense",
"main": "index.js",
"scripts": {
"build": "grunt build",
"coverage": "cross-env NODE_ENV=test BABEL_ENV=test nyc npm test && nyc report --reporter=text-lcov > coverage.lcov",
"prepublish": "grunt prepublish",
"test": "grunt test",
"lint": "grunt lint"
},
"repository": {
"type": "git",
"url": "https://github.com/TheFourFifths/consus-core"
},
"bugs": {
"url": "https://github.com/TheFourFifths/consus-core/issues"
},
"keywords": [
"consus",
"core",
"the four fifths"
],
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"cross-env": "^3.0.0",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-mocha-cli": "^2.1.0",
"nyc": "^9.0.1",
"sinon": "^1.17.6"
},
"dependencies": {
"bs58": "^3.0.0"
}
}