-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
35 lines (35 loc) · 1.13 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
{
"name": "@uncovertruth/newbie-traning",
"version": "0.0.1",
"author": "UNCOVER TRUTH Inc.",
"dependencies": {
"@uncovertruth/examples": "github:uncovertruth/examples"
},
"devDependencies": {
"@uncovertruth/textlint-config-ja": "4.0.0",
"husky": "1.3.1",
"lint-staged": "8.2.1",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"pug-cli": "1.0.0-alpha6",
"pug-lint": "2.6.0",
"pug-lint-config-uncovertruth": "4.2.0",
"reveal-md": "2.4.1",
"rimraf": "2.7.1",
"textlint": "11.3.1"
},
"license": "MIT",
"main": "n/a",
"private": true,
"repository": "ssh://git@github.com/uncovertruth/newbie-training.git",
"scripts": {
"build": "npm run clean && run-p build:*",
"build:custom": "reveal-md custom.md --static docs/custom/ --port 1948",
"build:example": "pug index.pug -P -o docs",
"build:tutorial": "reveal-md tutorial.md --static docs/tutorial/ --port 1949",
"clean": "rimraf docs/slides docs/custom docs/tutorial",
"lint": "textlint -c @uncovertruth/textlint-config-ja custom.md tutorial.md --cache",
"precommit": "lint-staged",
"test": "run-p lint build"
}
}