-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "kanbandown",
"version": "1.0.0",
"description": "Markdown to Kanban converter",
"main": "index.js",
"scripts": {
"build": "npm-run-all --parallel build:*",
"dev": "npm-run-all --parallel watch:*",
"build:js": "webpack",
"watch:js": "webpack -w",
"watch:serve": "live-server",
"test": "echo \"Error: no test specified\" && exit 1",
"build:example": "webpack --config webpack.example.config.js",
"watch:example": "webpack -w --config webpack.example.config.js"
},
"author": "hashrock <[email protected]>",
"license": "ISC",
"config": {
"src_js": "src/main.ts",
"dist_js": "dist/kanbandown.js"
},
"devDependencies": {
"@types/chai": "^3.4.30",
"@types/mocha": "^2.2.29",
"@types/mustache": "^0.8.28",
"@types/node": "^6.0.31",
"@types/sortablejs": "^1.3.27",
"@types/vue": "^1.0.27",
"chai": "^3.5.0",
"emojify": "^1.0.0",
"jquery": "^3.3.1",
"live-server": "^1.0.0",
"mocha": "^3.0.0",
"npm-run-all": "^2.3.0",
"sortablejs": "^1.4.2",
"ts-loader": "^0.8.2",
"typescript": "^2.0.0",
"vue": "^1.0.26",
"vue-class-component": "^3.2.0"
}
}