-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.37 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
{
"name": "@doist/react-interpolate",
"version": "2.0.0",
"license": "MIT",
"description": "A string interpolation component that formats and interpolates a template string in a safe way",
"main": "dist/react-interpolate.cjs",
"module": "dist/react-interpolate.mjs",
"engines": {
"node": "^20.0.0 || ^21.0.0",
"npm": "^10.0.0"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"lint": "eslint ./src ./__test__",
"build": "del dist && rollup -c && npm run mini-cjs && npm run mini-mjs",
"mini-cjs": "uglifyjs dist/react-interpolate.cjs --compress --mangle --enclose --output dist/react-interpolate.min.cjs",
"mini-mjs": "uglifyjs dist/react-interpolate.mjs --compress --mangle --enclose --output dist/react-interpolate.min.mjs",
"prettify": "prettier --write ."
},
"prettier": "@doist/prettier-config",
"repository": {
"type": "git",
"url": "https://github.com/Doist/react-interpolate.git"
},
"keywords": [
"react",
"interpolate",
"template",
"format",
"text",
"string"
],
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"devDependencies": {
"@babel/cli": "7.18.6",
"@babel/core": "7.18.6",
"@babel/eslint-parser": "7.18.2",
"@babel/plugin-transform-runtime": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-react": "7.18.6",
"@babel/runtime": "7.18.6",
"@doist/eslint-config": "7.1.2",
"@doist/prettier-config": "3.0.5",
"@testing-library/react": "13.3.0",
"babel-jest": "28.1.2",
"core-js": "3.23.3",
"del-cli": "4.0.1",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-compat": "4.0.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"gzip-cli": "1.2.0",
"jest": "28.1.2",
"jest-environment-jsdom": "28.1.2",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "2.75.7",
"rollup-plugin-babel": "4.4.0",
"uglify-es": "3.3.9"
}
}