-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "sorting",
"version": "1.0.0",
"description": "Collection of sorting algorithms",
"main": "index.js",
"scripts": {
"dev": "browser-sync start --server --files \"css/style.css\" \"js/**/*.js\" \"./**/*.html\" --ignore \"node_modules/*\"",
"test": "jasmine",
"debug": "node --inspect-brk node_modules/jasmine/bin/jasmine.js spec/quicksort.spec.js",
"build": "npx r.js -o require.build.js",
"uglify": "npx minify dist/*.js -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianfiedler/sorting.git"
},
"keywords": [
"sorting",
"demo"
],
"author": "Adrian Fiedler",
"license": "ISC",
"bugs": {
"url": "https://github.com/adrianfiedler/sorting/issues"
},
"homepage": "https://github.com/adrianfiedler/sorting#readme",
"dependencies": {
"amdefine": "^1.0.1",
"eslint": "^6.8.0",
"requirejs": "^2.3.6"
},
"devDependencies": {
"babel-minify": "^0.5.1",
"browser-sync": "^2.27.10",
"jasmine": "^3.5.0"
}
}