-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "react-robohash",
"version": "1.0.9",
"description": "A react component for robohash.org",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"prepublishOnly": "npm t && npm run build"
},
"keywords": [
"react",
"robohash",
"react-robohash"
],
"author": {
"name": "Felix Wostal",
"url": "https://felixwostal.de"
},
"bugs": {
"url": "https://github.com/fel1xw/react-robohash/issues"
},
"homepage": "https://github.com/fel1xw/react-robohash#readme",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^3.9.0",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.6",
"@types/node": "^11.9.5",
"@types/react": "^16.8.5",
"@types/react-dom": "^16.8.2",
"coveralls": "^3.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"jest": "^24.1.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"react": "^16.8.3",
"react-dom": "^16.8.3"
}
}