forked from ritz078/embed-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.01 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.01 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "embed-js",
"version": "0.0.0-development",
"description": "A JavaScript plugin that analyses the string and embeds emojis, media, tweets, code and services.",
"keywords": [
"JavaScript-plugin",
"embed",
"plugins",
"JavaScript",
"embed-js",
"emoticon",
"jquery-embed",
"emoji"
],
"main": "./dist/embed.js",
"jsnext:main": "./dist/embed.es2015.js",
"files": [
"dist",
"src",
"demo"
],
"repository": {
"type": "git",
"url": "https://github.com/ritz078/embed.js.git"
},
"bugs": {
"url": "https://github.com/ritz078/embed.js/issues"
},
"author": {
"name": "Ritesh Kumar",
"email": "rkritesh078@gmail.com",
"url": "https://github.com/ritz078"
},
"homepage": "http://riteshkr.com/embed.js",
"contributors": [
{
"name": "Jesús Pérez",
"email": "jesusprubio@gmail.com",
"url": "https://github.com/jesusprubio"
}
],
"license": "MIT",
"devDependencies": {
"autoprefixer-core": "^6.0.1",
"ava": "^0.13.0",
"babel": "^6.5.2",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.0",
"babel-plugin-external-helpers": "^6.4.0",
"babel-plugin-transform-export-extensions": "^6.5.0",
"babel-plugin-transform-regenerator": "^6.4.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.4.3",
"commitizen": "^2.8.2",
"cssnano": "^3.4.0",
"cz-conventional-changelog": "^1.1.6",
"es6-promise": "^3.0.2",
"eslint": "^3.16.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^2.0.1",
"fetch-jsonp": "^1.0.0",
"grunt": "^0.4.5",
"grunt-cli": "^1.1.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-connect": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-csslint": "^1.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-postcss": "^0.8.0",
"grunt-retinafy": "^0.1.5",
"grunt-shell": "^1.1.2",
"grunt-spritesmith": "^6.3.1",
"grunt-string-replace": "^1.2.1",
"load-grunt-tasks": "^3.4.0",
"phantomjs": "^2.1.3",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-filesize": "^1.0.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"semantic-release": "^6.3.2"
},
"scripts": {
"commit": "git-cz",
"lint": "eslint src/js/**/*.js",
"lintfix": "eslint --fix src/js/**/*.js",
"test": "ava test/**/*.test.js --require babel-register && npm run lint",
"build": "rollup -c rollup.umd.config.js && rollup.es2015.config.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"prepublish": "grunt dist"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"unfetch": "^2.0.0"
}
}