-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "getty-embeddy",
"version": "1.1.1",
"description": "Embed Gettyimages photos (iFrame) using Oembed.",
"homepage": "https://github.com/Tickaroo/getty-embeddy",
"author": "Ahmed Hassanein <[email protected]>",
"license": "MIT",
"keywords": [
"gettyimages",
"getty",
"embed",
"oEmbed",
"oembed"
],
"repository": {
"type": "git",
"url": "[email protected]/Tickaroo/getty-embeddy.git"
},
"main": "src/getty-embeddy.js",
"directories": {
"example": "./demo"
},
"scripts": {
"build": "npm run lint && npm run coverage && webpack",
"server": "webpack-dev-server --progress --colors",
"test": "mocha",
"testdev": "mocha || exit 0",
"testdbg": "webpack && mocha --debug-brk test/index.js && node-inspector",
"lint": "jshint src/*.js test/*.js",
"coverage": "istanbul cover node_modules/.bin/_mocha",
"release-patch": "npm run build && npm version patch && npm publish && git push --follow-tags"
},
"devDependencies": {
"chai": "3.5.0",
"codecov.io": "0.1.6",
"istanbul": "0.4.2",
"jsdom": "9.4.5",
"jshint": "2.9.1",
"mocha": "3.0.2",
"node-inspector": "0.12.8",
"should": "11.1.0",
"webpack": "1.13.1",
"webpack-dev-server": "1.16.1"
},
"contributors": [
{
"name": "Anton Pawlik",
"email": "[email protected]"
}
]
}