forked from esamattis/underscore.string
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.73 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "underscore.string",
"version": "3.2.3",
"description": "String manipulation extensions for Underscore.js javascript library.",
"homepage": "http://epeli.github.com/underscore.string/",
"contributors": [
"Esa-Matti Suuronen <[email protected]> (http://esa-matti.suuronen.org/)",
"Edward Tsech <[email protected]>",
"Pavel Pravosud <[email protected]> (<https://github.com/rwz>)",
"Sasha Koss <[email protected]> (http://koss.nocorp.me/)",
"Vladimir Dronnikov <[email protected]>",
"Pete Kruckenberg (<https://github.com/kruckenb>)",
"Paul Chavard <[email protected]> (<http://tchak.net>)",
"Ed Finkler <[email protected]> (<http://funkatron.com>)"
],
"keywords": [
"underscore",
"string"
],
"main": "./index.js",
"directories": {
"lib": "./"
},
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/epeli/underscore.string.git"
},
"bugs": {
"url": "https://github.com/epeli/underscore.string/issues"
},
"license": "MIT",
"scripts": {
"test": "gulp test"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-bench": "^1.1.0",
"gulp-browserify": "~0.5.0",
"gulp-bump": "~0.1.11",
"gulp-eslint": "^1.1.1",
"gulp-header": "^1.2.2",
"gulp-istanbul": "^0.6.0",
"gulp-mocha": "^2.0.0",
"gulp-param": "~0.6.3",
"gulp-rename": "~1.2.0",
"gulp-replace": "~0.5.0",
"gulp-rimraf": "^0.1.1",
"gulp-uglify": "~1.0.1",
"mocha": "^2.1.0",
"underscore": "^1.7.0"
},
"jshintConfig": {
"node": true,
"browser": true,
"qunit": true,
"globals": {
"s": true
}
},
"dependencies": {
"sprintf-js": "^1.0.3",
"util-deprecate": "^1.0.2"
}
}