forked from goldwasserexchange/bond-calculator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
{
"name": "@floydspace/bond-calculator",
"version": "0.2.0",
"description": "Yield and price calculations for bonds",
"main": "dist/index.js",
"scripts": {
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"test": "nyc ava",
"report": "npm run test && nyc report --reporter=html",
"build": "babel src --extensions '.ts' --out-dir dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/floydspace/bond-calculator"
},
"author": "Jonathan Goldwasser <[email protected]>",
"license": "MIT",
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": "ts-node/register"
},
"dependencies": {
"@hapi/joi": "^15.1.1",
"date-fns": "^1.30.1",
"ramda": "^0.26.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-exponentiation-operator": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/hapi__joi": "^15.0.4",
"@types/ramda": "^0.26.29",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"ava": "^2.4.0",
"babel-plugin-date-fns": "^0.2.1",
"babel-plugin-ramda": "^2.0.0",
"coveralls": "^3.0.7",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"nyc": "^14.1.1",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}