-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
71 lines (71 loc) · 1.91 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "simpler-paper",
"version": "0.3.7",
"description": "A very simple document generator.",
"main": "dist/bin/paper.js",
"scripts": {
"start": "webpack --config ./build/webpack.config.js --progress --watch",
"build": "rm -rf ./dist && webpack --config ./build/webpack.config.js --progress",
"commit": "commitizen init cz-conventional-changelog --save --save-exact",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"bin": {
"paper": "dist/bin/paper.js"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/DhyanaChina/simpler-paper.git"
},
"author": "DhyanaChina",
"license": "MIT",
"bugs": {
"url": "https://github.com/DhyanaChina/simpler-paper/issues"
},
"engines": {
"node": ">= 6.10"
},
"files": [
"LICENSE",
"READNE.md",
"dist/",
"templates/"
],
"homepage": "https://github.com/DhyanaChina/simpler-paper#readme",
"devDependencies": {
"@commitlint/config-angular": "^5.1.1",
"@types/commander": "^2.11.0",
"@types/marked": "^0.3.0",
"@types/node": "^8.0.47",
"@types/promise": "^7.1.30",
"commitlint": "^5.2.5",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"ts-loader": "^3.1.1",
"tslint": "^5.8.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.6.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.11.0",
"express": "^4.16.2",
"gh-pages": "git://github.com/WittBulter/gh-pages.git#v1.0.0-rc.2",
"highlight.js": "^9.12.0",
"inquirer": "^3.3.0",
"marked": "^0.3.9",
"ora": "^1.3.0",
"serve-static": "^1.13.1",
"simpler-paper-themes": "^0.3.1",
"update-notifier": "^2.3.0",
"util.promisify": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}