-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
80 lines (80 loc) · 2.68 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "emoji-panel",
"version": "0.5.2",
"description": "Add panel picker for emojis with different types of sets on your website. http://TimeToKnow.github.io/emoji-panel/",
"main": "lib/emoji-panel.js",
"scripts": {
"lint": "eslint .",
"test": "karma start",
"test:dev": "npm test -- --single-run=false",
"test:coverage": "npm test -- -coverage",
"test:coverage:dev": "npm run test:dev -- -coverage",
"test:lcov": "npm run test:coverage -- -lcov",
"lib": "webpack --progress --config ./webpack.lib.config.js && rimraf ./lib/emoji-panel-*.js",
"build": "webpack --progress && rimraf ./dist/emoji-panel-*.js",
"start": "webpack-dev-server --port 8080 --inline --progress --colors --config ./webpack.dev.config.js",
"start:prod": "set NODE_ENV=production&& npm start",
"predeploy": "set NODE_ENV=development&& npm run build && npm run lib && set NODE_ENV=production&& npm run build",
"deploy": "git add -f dist/ && node ./bin/bump.js && git checkout gh-pages && git merge master && git checkout master && git push --tags && npm publish && git push origin master gh-pages"
},
"repository": {
"type": "git",
"url": "https://github.com/TimeToKnow/emoji-panel"
},
"keywords": [
"emoji",
"picker",
"panel",
"twitter",
"ios",
"android",
"emojione",
"google"
],
"author": "unimonkiez",
"license": "MIT",
"dependencies": {
"emoji-datasource": "2.4.x"
},
"devDependencies": {
"absurd": "^0.3.34",
"absurd-loader": "^0.0.3",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.6.0",
"bower": "^1.7.9",
"coveralls": "^2.11.11",
"css-loader": "^0.23.1",
"eslint": "^2.7.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-minify-loader": "^1.1.0",
"html-webpack-plugin": "^2.15.0",
"inject-loader": "^2.0.1",
"isparta-loader": "^2.0.0",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^1.1.1",
"karma-coverage": "^1.1.0",
"karma-jasmine": "^1.0.2",
"karma-nyan-reporter": "^0.2.4",
"karma-phantomjs-launcher": "^1.0.1",
"karma-phantomjs-shim": "^1.4.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"node-sass": "^3.8.0",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"replace-loader": "^0.1.0",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"string-replace-webpack-plugin": "0.0.3",
"style-loader": "^0.13.1",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.14.1"
}
}