-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "bubble-sort-algorithm",
"version": "0.0.1",
"description": "Bubble sort algorithm",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha test.js",
"prestart": "npm run browserify",
"start": "http-server",
"browserify": "browserify index.js -o demo/index.js -s BubbleSort",
"eslint": "eslint index.js"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NicolasLeRoux/bubble-sort-algorithm.git"
},
"keywords": [
"bubble",
"sort"
],
"author": {
"name": "Nicolas Le Roux",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NicolasLeRoux/bubble-sort-algorithm/issues"
},
"homepage": "https://github.com/NicolasLeRoux/bubble-sort-algorithm#readme",
"devDependencies": {
"browserify": "^14.3.0",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"http-server": "^0.10.0",
"mocha": "^3.3.0",
"pre-commit": "^1.2.2"
}
}