-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.27 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
{
"name": "react-advanced-number",
"version": "1.0.0",
"description": "React component formatting and displaying a number with advanced features such as highlighting the differences with the previous value, a privacy mode, etc.",
"keywords": [
"react",
"number",
"price",
"privacy",
"currency",
"formatting"
],
"author": "aurelticot <[email protected]> (https://github.com/aurelticot)",
"homepage": "https://github.com/aurelticot/react-advanced-number#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aurelticot/react-advanced-number.git"
},
"bugs": {
"url": "https://github.com/aurelticot/react-advanced-number/issues"
},
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"clean:node_modules": "rm -rf node_modules/",
"clean:build": "rm -rf lib/",
"format:check": "npx prettier src/ --check",
"format": "npx prettier src/ --write",
"lint:check": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint": "eslint src/ --fix --ext .js,.jsx,.ts,.tsx",
"check": "npm run format:check && npm run lint:check",
"fix": "npm run format && npm run lint",
"clean": "npm run clean:node_modules && npm run clean:build",
"prebuild": "npm run clean:build",
"build": "npm run check && npx tsc",
"test": "jest --coverage"
},
"devDependencies": {
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-functional": "^3.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^26.5.6",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": ">=16.3.0"
}
}