-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
66 lines (66 loc) · 1.53 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
{
"name": "react-tweet-embed",
"version": "2.0.0",
"description": "react component that takes tweet id in props and renders tweet embed, nothing more",
"main": "dist/tweet-embed.js",
"types": "dist/tweet-embed.d.ts",
"module": "dist/tweet-embed.es.js",
"unpkg": "dist/tweet-embed.umd.js",
"source": "src/tweet-embed.tsx",
"scripts": {
"test": "ava",
"testu": "ava -u",
"build": "microbundle --jsx React.createElement",
"dev": "microbundle watch",
"prepublish": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capaj/react-tweet-embed.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/capaj/react-tweet-embed/issues"
},
"homepage": "https://github.com/capaj/react-tweet-embed#readme",
"peerDependencies": {
"react": ">=17"
},
"devDependencies": {
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.39",
"ava": "^3.15.0",
"enzyme": "^3.11.0",
"husky": "^7.0.4",
"jsdom": "^17.0.0",
"microbundle": "^0.14.2",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"files": [
"dist"
],
"ava": {
"files": [
"**/*.spec.tsx"
],
"extensions": [
"ts",
"tsx"
],
"require": [
"ts-node/register"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}