forked from nizaroni/emoji-strip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "emoji-strip",
"description": "Strip emoji from a string in Node.js and browsers.",
"version": "1.0.1",
"author": "Nizar Khalife Iglesias <khalifenizar@gmail.com>",
"bugs": {
"url": "https://github.com/khalifenizar/emoji-strip/issues"
},
"devDependencies": {
"standard": "^9.0.0",
"tape": "^4.6.3",
"uglify-js": "^2.8.6",
"webpack": "^2.2.1"
},
"homepage": "https://github.com/khalifenizar/emoji-strip",
"keywords": [
"emoji",
"strip",
"remove",
"emoticons"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/khalifenizar/emoji-strip.git"
},
"scripts": {
"test": "standard && node tests/emoji-strip.js",
"build": "npm run browser && npm run min",
"browser": "webpack index.js dist/emoji-strip.js --output-library=emojiStrip --output-library-target=window",
"min": "uglifyjs dist/emoji-strip.js --output=dist/emoji-strip.min.js --compress --mangle"
},
"standard": {
"ignore": [
"dist/*"
]
}
}