-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
31 lines (31 loc) · 861 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
{
"name" : "unorm",
"version" : "1.6.0",
"description" : "JavaScript Unicode 8.0 Normalization - NFC, NFD, NFKC, NFKD. Read <http://unicode.org/reports/tr15/> UAX #15 Unicode Normalization Forms.",
"author": "Bjarke Walling <[email protected]>",
"license": "MIT or GPL-2.0",
"contributors": [
{ "name": "Bjarke Walling", "email": "[email protected]" },
{ "name": "Oleg Grenrus", "email": "[email protected]" },
{ "name": "Matsuza", "email": "[email protected]" }
],
"repository" : {
"type" : "git",
"url" : "http://github.com/walling/unorm.git"
},
"main": "./lib/unorm.js",
"engines" : {
"node" : ">= 0.4.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"benchmark": "~1.0.0",
"unorm": "1.6.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-watch": "~0.5.0",
"grunt-simple-mocha": "~0.4.0",
"grunt": "~0.4.1"
}
}