forked from tonickkozlov/vue-tweet-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.04 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "vue-tweet-embed",
"version": "2.4.0",
"description": "Embed tweets in your vue.js app",
"main": "dist",
"scripts": {
"test": "ava --serial --verbose --no-power-assert",
"pretest": "eslint src && npm run build && npm run preexamples",
"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",
"preexamples": "cd examples; ls | xargs -n1 -I% npx webpack-cli --mode=development %/index.js -o %/index.build.js",
"examples": "node example_server.js"
},
"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": "^2.4.0",
"decache": "^4.1.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.0.0",
"express": "^4.17.1",
"jsdom": "^15.2.1",
"puppeteer": "^3.0.0",
"regenerator-runtime": "^0.13.2",
"rimraf": "^3.0.0",
"simple-spy": "^3.0.1",
"vue": "^2.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.4"
},
"ava": {
"files": [
"*.spec.*.js"
],
"babel": {
"testOptions": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": true
}
}
]
]
}
}
},
"dependencies": {}
}