-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "fastcomments-react",
"version": "3.3.0",
"description": "A React library for FastComments",
"author": "winrid",
"license": "MIT",
"repository": "fastcomments/fastcomments-react",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"lodash": "*",
"react": "*"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^28.1.1",
"@types/lodash": "^4.14.159",
"@types/node": "^22.5.5",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"cross-env": "^7.0.2",
"fastcomments-typescript": "^2.0.18",
"gh-pages": "^6.0.0",
"lodash": "^4.17.19",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"typescript": "^4.8.2"
},
"files": [
"dist"
]
}