-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
{
"name": "bond-calculator",
"version": "0.1.9",
"description": "Yield and price calculations for bonds",
"main": "dist/index.js",
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "nyc ava",
"report": "npm run test && nyc report --reporter=html",
"build": "babel src --out-dir dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/goldwasserexchange/bond-calculator"
},
"author": "Jonathan Goldwasser <jonathan@goldwasserexchange.be>",
"license": "MIT",
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-exponentiation-operator",
"ramda",
"date-fns"
]
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"strict": 0,
"no-mixed-operators": 0,
"linebreak-style": 0,
"no-underscore-dangle": 0,
"comma-dangle": [
2,
"always-multiline"
]
}
},
"dependencies": {
"date-fns": "^1.29.0",
"joi": "^14.3.0",
"ramda": "^0.26.1"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-plugin-date-fns": "^0.2.1",
"babel-plugin-ramda": "^1.6.2",
"babel-plugin-transform-exponentiation-operator": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"coveralls": "^3.0.2",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"nyc": "^12.0.2"
}
}