-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 1 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
{
"name": "@twuni/emojify",
"version": "1.0.2",
"description": "Convert emoji colon syntax in a string to raw emoji.",
"repository": {
"type": "git",
"url": "https://github.com/twuni/emojify.git"
},
"author": {
"email": "[email protected]",
"name": "Devin Canterberry"
},
"license": "MIT",
"scripts": {
"build": "babel --delete-dir-on-start --minified --compact true --only '**/index.js' --no-comments --source-maps false --out-dir lib src && cp -fR README.md LICENSE package.json yarn.lock lib/",
"lint": "eslint src",
"test": "nyc --silent --check-coverage --branches 100 --lines 100 --functions 100 --statements 100 mocha --require @babel/register src/**/spec.js"
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.2",
"@babel/preset-env": "7.10.2",
"@babel/register": "7.10.1",
"babel-eslint": "^10.1.0",
"chai": "4.2.0",
"eslint": "^7.2.0",
"eslint-plugin-ante": "^1.0.4",
"mocha": "8.0.1",
"nyc": "15.1.0"
}
}