-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.77 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
44
45
46
47
48
49
50
51
52
{
"name": "sorting-algorithms",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
},
"scripts": {
"build": "NODE_ENV=production mkdirp dist & browserify main.js | uglifyjs -cm > dist/bundle.js",
"start": "npm run www & npm run watch",
"watch": "mkdirp dist & watchify main.js -p browserify-hmr -o dist/bundle.js -dv",
"www": "ecstatic -p 8000 ."
},
"dependencies": {
"array-shuffle": "^1.0.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"browserify-hmr": "~0.3.1",
"classnames": "^2.2.1",
"ecstatic": "~0.8.0",
"mkdirp": "^0.5.1",
"react": "~0.14.3",
"react-dom": "^0.14.3",
"ud": "^2.0.2",
"uglifyjs": "^2.4.10",
"watchify": "^3.6.1"
},
"license": "MIT",
"description": "A React-based visualization of different sorting algorithms for educational purposes, based on the bare-bones [react](https://facebook.github.io/react/) starter using [babelify](https://npmjs.com/package/babelify) for es6 and jsx under [browserify](http://browserify.org)/[watchify](https://npmjs.com/package/watchify) with hot module replacement from [browserify-hmr](https://npmjs.com/package/browserify-hmr) and [npm run scripts](http://substack.net/task_automation_with_npm_run)",
"version": "1.0.0",
"main": "main.js",
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/decadentjs/sorting-algorithms.git"
},
"author": "Claudio Procida",
"bugs": {
"url": "https://github.com/decadentjs/sorting-algorithms/issues"
},
"homepage": "https://github.com/decadentjs/sorting-algorithms#readme"
}