-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "hubot-apple-music-embed",
"version": "1.0.1",
"description": "Return apple music embed links when apple music links are posted.",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "Luke Clark",
"email": "[email protected]"
},
"repository": "https://github.com/ljcl/hubot-apple-music-embed.git",
"keywords": [
"hubot-script",
"apple-music"
],
"scripts": {
"build": "webpack --progress --colors",
"watch": "webpack --watch --progress --colors",
"prepublish": "webpack",
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec -t 10000 --compilers js:babel-core/register,coffee:coffee-script/register",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"chai": "^3.4.1",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"coveralls": "^2.11.6",
"hubot": "^2.17.0",
"hubot-mock-adapter": "^1.0.0",
"istanbul": "^1.0.0-alpha.2",
"json-loader": "^0.5.4",
"mocha": "^2.3.4",
"webpack": "^1.13.0"
},
"dependencies": {
"get-urls": "^5.0.0",
"lodash": "^4.12.0",
"query-string": "^4.1.0",
"request": "^2.72.0",
"url": "^0.11.0"
}
}