-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 985 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
40
41
42
43
44
{
"name": "unicode-length",
"version": "1.0.0",
"description": "Get the length of unicode strings",
"main": "build/unicode-length.js",
"files": [
"build/unicode-length.js"
],
"homepage": "https://github.com/jviotti/unicode-length",
"repository": {
"type": "git",
"url": "git://github.com/jviotti/unicode-length.git"
},
"keywords": [
"unicode",
"string",
"length"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "gulp test",
"prepublish": "gulp build"
},
"author": "Juan Cruz Viotti <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "~1.10.0",
"coffee-script": "~1.8.0",
"gulp": "~3.8.10",
"gulp-coffee": "~2.2.0",
"gulp-coffeelint": "~0.4.0",
"gulp-mocha": "~2.0.0",
"gulp-util": "~3.0.1",
"mocha": "~2.0.1",
"sinon": "~1.12.2",
"sinon-chai": "~2.6.0"
},
"dependencies": {
"punycode": "^1.3.2",
"strip-ansi": "^3.0.1"
}
}