-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·88 lines (88 loc) · 1.93 KB
/
package.json
File metadata and controls
executable file
·88 lines (88 loc) · 1.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "sort-viz",
"version": "0.3.1",
"description": "Sorting Algorithm Visualizations",
"main": "umd/sort.min.js",
"subdomain": "sorts",
"directories": {
"lib": "lib",
"doc": "docs",
"example": "examples"
},
"scripts": {
"build": "gulp",
"git": "git push heroku master && git push origin master",
"prepublishOnly": "npm run build && npm test && npm run git",
"start": "node examples/server",
"test": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickroberts/sort-viz.git"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=4.0.0"
},
"keywords": [
"sorting",
"visualization",
"algorithm",
"umd"
],
"author": "Patrick Roberts",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrickroberts/sort-viz/issues"
},
"homepage": "https://github.com/patrickroberts/sort-viz#readme",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"es2016"
],
"plugins": [
[
"transform-builtin-extend",
{
"globals": [
"Array"
]
}
],
"transform-runtime"
]
}
]
]
},
"standard": {
"ignore": [
"docs/"
]
},
"dependencies": {
"express": "^4.15.4"
},
"devDependencies": {
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"gulp": "^3.9.1",
"gulp-jsdoc3": "^1.0.1",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"require-dir": "^0.3.2",
"standard": "^10.0.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}