-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 869 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
{
"name": "quick-sort-algorithm",
"version": "0.0.1",
"description": "Quick sort algorithm",
"main": "index.js",
"scripts": {
"pretest:new": "npm run eslint",
"test": "node ./node_modules/mocha/bin/mocha *.specs.js",
"prestart": "npm run browserify",
"start": "http-server",
"browserify": "browserify index.js -o demo/index.js -s BubbleSort",
"eslint": "eslint index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NicolasLeRoux/quick-sort-algorithm.git"
},
"keywords": [
"quick sort"
],
"author": {
"name": "Nicolas Le Roux",
"email": "mr.leroux.nicolas+quick-sort-algorithm@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NicolasLeRoux/quick-sort-algorithm/issues"
},
"homepage": "https://github.com/NicolasLeRoux/quick-sort-algorithm#readme"
}