forked from sean-codes/kanban
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.1 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
{
"name": "kanban",
"version": "1.0.0",
"description": "the javascript kanban frontend",
"main": "scripts.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "gulp",
"docs": "jsdoc2md ./src/*.js > ./docs.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sean-codes/kanban.git"
},
"keywords": [
"kanban"
],
"babel": {
"presets": [
"env"
]
},
"author": "sean codes",
"license": "ISC",
"bugs": {
"url": "https://github.com/sean-codes/kanban/issues"
},
"homepage": "https://github.com/sean-codes/kanban#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-clean-css": "^3.9.0",
"gulp-jsdoc3": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^3.0.0",
"gulp-watch": "^4.3.11",
"ink-docstrap": "^1.3.2",
"jsdoc-to-markdown": "^3.0.2"
},
"dependencies": {
"gulp-concat": "^2.6.1"
}
}