forked from capaj/react-tweet-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "react-tweet-embed",
"version": "1.0.8",
"description": "react component that you supply tweet id and you'll get a tweet embed back, nothing more",
"main": "dist/tweet-embed.js",
"module": "dist/tweet-embed.es.js",
"scripts": {
"test": "BABEL_ENV=cjs ava",
"testu": "BABEL_ENV=cjs ava -u",
"pretest": "standard",
"build": "BABEL_ENV=cjs babel tweet-embed.js --out-dir dist && BABEL_ENV=es babel tweet-embed.js --out-file dist/tweet-embed.es.js",
"build-es": "BABEL_ENV=es babel tweet-embed.js --out-dir dist",
"clean": "rimraf dist",
"prepublish": "npm test && npm run clean && 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": ">0.14.0"
},
"devDependencies": {
"ava": "^0.22.0",
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.0.1",
"enzyme": "^2.9.1",
"jsdom": "^11.1.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"rimraf": "^2.6.1",
"standard": "^10.0.2"
},
"files": [
"dist"
],
"ava": {
"files": [
"*.spec.js"
],
"babel": "inherit",
"require": [
"babel-register"
]
},
"standard": {
"ignore": [
"dist/"
]
}
}