-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2 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
79
80
81
82
83
{
"name": "cryptocurrencies-normalizr",
"version": "2.1.0",
"description": "A normalizer for cryptocurrency symbols and pairs",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && NODE_ENV=test nyc npm run test-mocha",
"test-mocha": "NODE_ENV=test mocha --harmony --exit ./src/**/*.spec.js",
"precommit": "npm run git-hook",
"prepush": "npm run git-hook",
"git-hook": "npm run lint -s && npm run test -s",
"lint": "standard --verbose | snazzy",
"fixcode": "standard --fix",
"coverage": "NODE_ENV=test nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuanP/cryptocurrencies-normalizr"
},
"keywords": [
"normalizer",
"cryptocurrency"
],
"author": "Luan Pablo, Adriel Pereira",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/LuanP/cryptocurrencies-normalizr/issues"
},
"homepage": "https://github.com/LuanP/cryptocurrencies-normalizr#README",
"dependencies": {
"axios": "^0.17.1",
"chalk": "^2.3.1",
"ramda": "^0.25.0"
},
"engines": {
"node": "8.11.3",
"npm": "6.1.0"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"test",
"beforeEach",
"after"
]
},
"nyc": {
"include": [
"src/**/*.js",
"src/**/**/*.js"
],
"require": [
"babel-register"
],
"exclude": [
"packages/**/*"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"devDependencies": {
"assert": "^1.4.1",
"babel-eslint": "^8.2.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"dotenv": "^5.0.0",
"husky": "^0.14.3",
"mocha": "^5.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.0.0",
"should": "^13.2.1",
"sinon": "^4.3.0",
"snazzy": "^7.0.0",
"standard": "^11.0.0"
}
}