forked from tonickkozlov/vue-tweet-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.6 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
70
{
"name": "vue-tweet-embed",
"version": "2.2.1",
"description": "Embed tweets in your vue.js app",
"main": "dist",
"scripts": {
"test": "ava --serial --verbose --no-power-assert",
"pretest": "eslint index.js && npm run build",
"prebuild": "npm run clean",
"build": "./node_modules/.bin/babel src --out-dir dist",
"clean": "rimraf dist",
"prepublish": "npm test && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonickkozlov/vue-tweet-embed.git"
},
"bugs": {
"url": "https://github.com/tonickkozlov/vue-tweet-embed/issues"
},
"homepage": "https://github.com/tonickkozlov/vue-tweet-embed#readme",
"keywords": [
"vue",
"vue.js",
"tweet",
"twitter",
"embed"
],
"author": "Anton Kozlov <[email protected]>",
"license": "MIT",
"peerDependencies": {
"vue": "^2.2.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10",
"since 2015"
],
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"ava": "1.0.0-rc.1",
"decache": "^4.1.0",
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"jsdom": "^9.12.0",
"rimraf": "^2.6.2",
"simple-spy": "^2.1.0",
"vue": "^2.2.0"
},
"ava": {
"files": [
"*.spec.js"
],
"babel": {
"testOptions": {
"presets": [
"@babel/preset-env"
]
}
}
},
"dependencies": {
"@babel/polyfill": "^7.0.0"
}
}