-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
56 lines (56 loc) · 1.75 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
{
"name": "embedo",
"version": "1.14.0",
"description": "Embeds third party content to DOM with perks",
"main": "embedo.js",
"scripts": {
"prestart": "npm install",
"start": "http-server ./ -p 8081 -o",
"lint": "eslint embedo.js plugins/**/**.embedo.js",
"test": "mocha test/*.spec.js",
"build:embedo": "uglifyjs embedo.js --compress --comments --mangle -o embedo.min.js",
"build:embedo:gmaps": "uglifyjs plugins/gmaps/gmaps.embedo.js --compress --comments --mangle -o plugins/gmaps/gmaps.embedo.min.js",
"build:embedo:reddit": "uglifyjs plugins/reddit/reddit.embedo.js --compress --comments --mangle -o plugins/reddit/reddit.embedo.min.js",
"build:embedo:flickr": "uglifyjs plugins/flickr/flickr.embedo.js --compress --comments --mangle -o plugins/flickr/flickr.embedo.min.js",
"build": "npm run build:embedo && npm run build:embedo:gmaps && npm run build:embedo:reddit && npm run build:embedo:flickr"
},
"repository": {
"type": "git",
"url": "https://github.com/shobhitsharma/embedo.git"
},
"keywords": [
"embed",
"embedo",
"social-media-plugin",
"content-embed",
"iframe",
"oembed"
],
"author": "Shobhit Sharma <hi@shobh.it>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shobhitsharma/embedo/issues"
},
"homepage": "https://github.com/shobhitsharma/embedo",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.12.1",
"http-server": "^0.12.3",
"jsdom": "^16.4.0",
"mocha": "^8.2.0",
"prettier": "^2.1.2",
"uglify-js": "^3.11.4"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 110
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 5
}
}
}