-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 996 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 996 Bytes
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
{
"name": "bp-array-sort",
"version": "0.1.0",
"description": "bp-array-sort is a failover implemenations for faulty Array.prototype.sort method browser's implementation",
"main": "index.js",
"scripts": {
"test": "node_modules/jshint/bin/jshint . && node_modules/mocha/bin/mocha --globals setImmediate,clearImmediate --check-leaks --colors -t 10000 --reporter spec $(find test/* -name '*.test.js')"
},
"repository": {
"type": "git",
"url": "https://github.com/browser-packages/array-sort.git"
},
"author": "Gabriel Conceição <gabriel.conceicao@findhit.com>",
"license": "GPL v3",
"contributors": [
{
"name": "Gabriel Conceição",
"email": "gabriel.conceicao@findhit.com"
},
{
"name": "José Moreira",
"email": "jose.moreira@findhit.com"
},
{
"name": "Hugo Passo",
"email": "hugo.passo@findhit.com"
}
],
"devDependencies": {
"chai": "2.3.0",
"mocha": "2.2.4",
"jshint": "2.7.0"
}
}