forked from warent/next-useragent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.95 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
{
"name": "next-useragent",
"version": "2.6.0",
"description": "next-useragent parses browser user-agent strings for next.js.",
"license": "MIT",
"readmeFilename": "README.md",
"homepage": "https://github.com/tokuda109/next-useragent",
"main": "dist/next-useragent.js",
"typings": "dist/next-useragent.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:tokuda109/next-useragent.git"
},
"bugs": {
"url": "https://github.com/tokuda109/next-useragent/issues"
},
"author": "Tsuyoshi Tokuda <[email protected]>",
"keywords": [
"next",
"useragent"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"lint": "eslint --config ./.eslintrc './src/**/*.{ts,tsx}'",
"test": "jest --config jest.config.js --runInBand"
},
"dependencies": {
"kind-of": ">=6.0.3",
"minimist": ">=1.2.5",
"node-fetch": ">=2.6.1",
"object-path": "0.11.5",
"ua-parser-js": "^0.7.23"
},
"devDependencies": {
"@types/chai": "4.2.17",
"@types/enzyme": "3.10.8",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "26.0.23",
"@types/react": "17.0.4",
"@types/react-dom": "17.0.3",
"@types/ua-parser-js": "0.7.35",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"chai": "4.3.4",
"chai-enzyme": "1.0.0-beta.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "7.25.0",
"eslint-plugin-react": "7.23.2",
"jest": "26.6.3",
"lodash": "4.17.21",
"next": "^10.0.5",
"react": "16.14.0",
"react-dom": "16.14.0",
"rollup": "2.46.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-dts": "2.0.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-typescript2": "0.30.0",
"rollup-plugin-uglify": "6.0.4",
"serialize-javascript": "5.0.1",
"ts-jest": "26.5.5",
"tslib": "2.2.0",
"typescript": "4.2.4"
},
"peerDependencies": {
"next": ">=10"
}
}