-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 KB
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
{
"name": "@jasonheecs/js-sorting",
"version": "1.0.2",
"description": "A list of common sorting algorithms implemented in Javascript",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src/*.js test/*.js",
"prepare": "./node_modules/babel-cli/bin/babel.js src --out-dir lib",
"precommit": "npm run lint",
"test": "nyc --reporter=html --reporter=text mocha --require babel-core/register",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonheecs/js-sorting.git"
},
"keywords": [
"sorting",
"algorithms",
"sort",
"bubble sort",
"insertion sort",
"merge sort",
"quicksort",
"selection sort"
],
"author": "jasonheecs",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonheecs/js-sorting/issues"
},
"homepage": "https://github.com/jasonheecs/js-sorting#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^7.0.1",
"mocha": "^9.1.0",
"nyc": "^15.1.0",
"sinon": "^11.1.2"
}
}