-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpackage.json
35 lines (35 loc) · 885 Bytes
/
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
{
"name": "tweetie",
"version": "3.0.1",
"description": "Simple Twitter Feed Plugin that works with new Twitter 1.1 API.",
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack.config.js",
"watch": "./node_modules/.bin/webpack --config webpack.config.js --progress --watch",
"test": "./node_modules/.bin/mocha --compilers js:babel-register --require babel-polyfill --recursive"
},
"keywords": [
"jquery",
"twitter",
"tweet",
"feed",
"api",
"jquery-plugin"
],
"author": "Sonny T.",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.1",
"chai": "^3.5.0",
"mocha": "^3.3.0",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.2.1"
},
"babel": {
"presets": [
"env"
]
}
}