forked from mathiasbynens/he
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 907 Bytes
/
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": "lean-he",
"version": "2.1.2",
"description": "A robust HTML entities encoder/decoder with full Unicode support.",
"homepage": "https://github.com/adnaan1703/lean-he",
"main": "lean-he.js",
"keywords": [
"string",
"entities",
"entity",
"html",
"encode",
"decode",
"unicode",
"escape",
"unescape"
],
"license": "MIT",
"author": {
"name": "Adnaan Ahmed",
"url": "https://github.com/adnaan1703"
},
"repository": {
"type": "git",
"url": "https://github.com/adnaan1703/lean-he"
},
"bugs": "https://github.com/adnaan1703/lean-he/issues",
"scripts": {
"test": "jest && npm run codecov",
"codecov": "codecov -f coverage/coverage-final.json",
"build": "babel src -d lib"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.1.0",
"jest": "^23.5.0"
}
}