forked from plaindocs/travis-broken-example
-
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.25 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.25 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": "milagro-crypto-js",
"version": "0.1.0",
"description": "Apache Milagro Crypto Javascript Library",
"main": "index.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "mocha-parallel-tests",
"coverage": "nyc mocha-parallel-tests",
"report": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/apache/incubator-milagro-crypto-js.git"
},
"keywords": [
"pairing",
"elliptic",
"curve",
"cryptography"
],
"author": "Michael Scott, Alessandro Budroni, Kealan McCusker",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/apache/incubator-milagro-crypto-js/issues"
},
"homepage": "https://github.com/apache/incubator-milagro-crypto-js#readme",
"devDependencies": {
"chai": "latest",
"coveralls": "latest",
"eslint": "latest",
"istanbul": "latest",
"mocha": "latest",
"mocha-text-cov": "latest",
"nyc": "latest",
"mocha-parallel-tests": "latest"
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}