-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
100 lines (100 loc) · 2.16 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "walletjs",
"version": "1.2.1",
"description": "Now you can handle money without headaches!",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage --expand",
"test-watch": "jest --watch",
"lint": "eslint src tests",
"prepublish": "babel src --out-dir lib",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dleitee/walletjs.git"
},
"bugs": {
"url": "https://github.com/dleitee/walletjs/issues"
},
"homepage": "https://github.com/dleitee/walletjs#readme",
"browser": {
"Intl": "./src/helpers/intil.js"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb/base",
"env": {
"browser": true,
"node": true,
"jest": true
},
"rules": {
"semi": [
2,
"never"
],
"no-console": [
2,
{
"allow": [
"warn",
"info",
"error"
]
}
],
"import/named": 2,
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxEOF": 1,
"maxBOF": 0
}
],
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"parent",
"sibling",
"index"
],
"newlines-between": "always"
}
],
"no-lenght/no-lenght": "error"
},
"plugins": [
"no-lenght"
]
},
"author": "Daniel Leite de Oliveira <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"coveralls": "^2.11.16",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-no-lenght": "^1.0.1",
"jest": "^18.1.0",
"jest-babel": "^1.0.1"
},
"dependencies": {
"big.js": "^3.1.3",
"intl": "^1.2.5"
}
}