forked from CambrianTech/react-client-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "react-client-info",
"version": "0.0.21",
"description": "Web client information for react",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm-run-all clean build:js",
"build:js": "rollup -c",
"clean": "rimraf dist",
"format": "prettier --write 'src/**/*' 'demo/src/**/*'",
"prepare": "npm-run-all clean build",
"start": "npm-run-all --parallel start:js",
"start:js": "rollup -c -w",
"test": "jest --config jest.config.json --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CambrianTech/react-client-info.git"
},
"keywords": [
"Browser",
"React"
],
"author": "Cambrian",
"license": "MIT",
"bugs": {
"url": "https://github.com/CambrianTech/react-client-info/issues"
},
"homepage": "https://github.com/CambrianTech/react-client-info#readme",
"dependencies": {
"@types/node": "^12.11.1"
},
"devDependencies": {
"react": "^16.9",
"react-dom": "^16.9",
"@types/react": "^16.9",
"@types/react-dom": "^16.9",
"autoprefixer": "^9.6.5",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"rollup": "^1.24.0",
"rollup-plugin-typescript2": "^0.24.3",
"typescript": "^3.6.4"
},
"peerDependencies": {
"react": "^16.9",
"react-dom": "^16.9",
"@types/react": "^16.9",
"@types/react-dom": "^16.9"
}
}