-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.9 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
{
"name": "wealth",
"version": "1.1.8",
"repository": "https://github.com/amirmohsen/wealth",
"description": "A full-featured money library",
"scripts": {
"build": "babel-node --extensions \".ts\" ./build",
"build:no-pkg": "babel-node --extensions \".ts\" build --disablePackageCopy",
"dev": "babel-node --extensions \".ts\" build --dev",
"check-types": "tsc --noEmit --skipLibCheck",
"lint": "eslint --ext .jsx,.js,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .jsx,.js,.ts,.tsx .",
"test:unit": "jest --config ./unit-test.config.js",
"test:functional": "jest --config ./functional-test.config.js",
"test:functional:with-build": "yarn build:no-pkg && yarn test:functional",
"test": "yarn lint && yarn test:unit && yarn test:functional",
"updateRootPackageJSONVersion": "babel-node --extensions \".ts\" build/updateRootPackageJSONVersion",
"rm:lib": "rm -rf ./lib"
},
"keywords": [
"flexverse",
"money",
"currency",
"calculation",
"formatting",
"allocation",
"serializable"
],
"author": {
"name": "Amir Abdolrazaghi",
"email": "amir@flexverse.tech"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/amirmohsen/wealth/issues"
},
"homepage": "https://github.com/amirmohsen/wealth#readme",
"jest-stare": {
"resultDir": "testOutput/unit/report",
"coverageLink": "../coverage/lcov-report/index.html"
},
"dependencies": {
"bignumber.js": "^9",
"common-tags": "^1",
"deep-freeze": "^0.0.1",
"es6-error": "^4",
"lodash.isequal": "^4",
"validator": "^11"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@semantic-release/exec": "^3",
"@semantic-release/git": "^7",
"@types/common-tags": "^1",
"@types/deep-freeze": "^0.1",
"@types/fs-extra": "^8",
"@types/jest": "^24.0.21",
"@types/lodash.isequal": "^4",
"@types/validator": "^10",
"@types/yargs": "^13",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"babel-jest": "^24.9.0",
"cli-spinners": "^2",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-prettier": "^3.1.1",
"fs-extra": "^8",
"jest": "^24",
"jest-stare": "^1",
"jest-watch-directories": "^1",
"jest-watch-select-projects": "^0.1",
"jest-watch-suspend": "^1",
"jest-watch-typeahead": "^0.3",
"ora": "^3",
"prettier": "^1.18.2",
"rollup": "^1",
"rollup-plugin-commonjs": "^10",
"rollup-plugin-json": "^4",
"rollup-plugin-node-resolve": "^5",
"rollup-plugin-typescript2": "^0.22.0",
"semantic-release": "^15",
"typescript": "^3",
"yargs": "^13"
}
}