-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.95 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
73
74
75
76
77
78
{
"name": "is-brexit",
"version": "1.0.0",
"description": "Get a result of Brexit referendum.",
"keywords": [
"result",
"brexit",
"britain",
"exit",
"eu",
"referendum",
"node"
],
"homepage": "https://github.com/AnatoliyGatt/is-brexit",
"bugs": {
"url": "https://github.com/AnatoliyGatt/is-brexit/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Anatoliy Gatt",
"email": "[email protected]",
"url": "http://anatoliygatt.com"
},
"contributors": [],
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"index.js",
"lib/"
],
"main": "index.js",
"bin": {},
"man": {},
"directories": {},
"repository": {
"type": "git",
"url": "https://github.com/AnatoliyGatt/is-brexit.git"
},
"scripts": {
"test": "mocha --colors --sort --bail --reporter spec --check-leaks --full-trace --no-timeouts --recursive ./test/*.js",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --colors --sort --bail --reporter spec --check-leaks --full-trace --no-timeouts --recursive ./test/*.js",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --colors --sort --bail --reporter dot --check-leaks --full-trace --no-timeouts --recursive ./test/*.js",
"test-tap": "mocha --colors --sort --bail --reporter tap --check-leaks --full-trace --no-timeouts --recursive ./test/*.js"
},
"config": {},
"dependencies": {
"true": "0.0.2"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.3.3",
"istanbul": "^0.4.4",
"mocha": "^2.5.3"
},
"peerDependencies": {},
"bundledDependencies": [],
"optionalDependencies": {},
"engines": {
"node": ">= 0.10.0",
"iojs": ">= 1.0.0",
"npm": ">= 1.2.14"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"ia32",
"arm",
"mips"
],
"preferGlobal": false,
"private": false,
"publishConfig": {}
}