-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "ramda-decimal",
"version": "2.3.0",
"description": "Ramda-centric wrapper to decimal.js",
"main": "src/ramda-decimal.js",
"types": "src/ramda-decimal.d.ts",
"author": "Wealth Wizards <devwizards@wealthwizards.com>",
"license": "MIT",
"keywords": [
"ramda",
"functional",
"utils",
"utilities",
"point-free",
"curried",
"pure",
"math",
"arbitrary-precision",
"big",
"number",
"decimal",
"float",
"math"
],
"scripts": {
"test": "tape src/**/*.spec.js",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"ci": "npm install && npm run lint && npm test",
"docs": "jsdoc2md --template README.hbs src/ramda-decimal.js > README.md",
"release": "rm -rf node_modules && npm i --production && npm publish"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:WealthWizardsEngineering/ramda-decimal.git"
},
"dependencies": {},
"peerDependencies": {
"decimal.js": "^10.2.0",
"ramda": ">=0.26.1"
},
"devDependencies": {
"decimal.js": "^10.2.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "4.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-ramda": "2.5.1",
"jsdoc-to-markdown": "^5.0.3",
"jsverify": "0.8.4",
"ramda": ">=0.26.1",
"tape": "^4.13.3"
}
}