forked from jonfriskics/JS-KanbanBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 910 Bytes
/
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
{
"name": "js-kanbanboard",
"version": "1.0.0",
"description": "Build a Kanban Board with Javascript - https://pluralsight.com",
"scripts": {
"start": "ws --hostname localhost --open",
"test": "cross-env NODE_ENV=test mocha './test/*.test.js' || true",
"test:module1": "cross-env NODE_ENV=test mocha './test/module1.test.js' || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pluralsight-projects/JS-KanbanBoard.git"
},
"author": "Thomas Bell",
"license": "MIT",
"bugs": {
"url": "https://github.com/pluralsight-projects/JS-KanbanBoard/issues"
},
"homepage": "https://github.com/pluralsight-projects/JS-KanbanBoard#readme",
"dependencies": {
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"dot-object": "^1.8.1",
"jscodeshift": "^0.6.4",
"mocha": "^6.2.0"
},
"devDependencies": {
"local-web-server": "^3.0.7"
}
}