forked from nauchikus/typescript-definitive-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.37 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
{
"name": "typescript-definitive-guide",
"version": "1.0.0",
"description": "book",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git@github-nauchikus:nauchikus/typescript-definitive-guide.git"
},
"author": "nauchikus",
"license": "ISC",
"scripts": {
"prestart": "env NODE_ENV=development npm run book:build",
"test::md-to-html-action": "node ./tests/md-to-html-action-entry.js",
"test::create-book-contents-info-action": "node ./tests/create-book-contents-info-action-entry.js",
"test::delete-temporary-directory-action": "node ./tests/delete-temporary-directory-action-entry.js",
"test::build-part-into-single-file-action-entry": "node ./tests/build-part-into-single-file-action-entry.js",
"test::index-entry": "node ./tests/index-entry.js",
"scripts": "ntl",
"start": "cross-env NODE_ENV=development",
"build": "book-builder",
"update": "npm i -D npm-upgrade && npm-upgrade"
},
"config": {
},
"dependencies": {
"cross-env": "^5.2.0",
"copy-dir": "^0.4.0",
"del": "^3.0.0",
"hastscript": "^5.0.0",
"highlightjs": "^9.12.0",
"remark-highlight.js": "^5.1.0",
"remark-html": "^9.0.0",
"remark-parse": "^6.0.3",
"shelljs": "^0.8.3",
"textract": "^2.4.0",
"translit-rus-eng": "^1.0.7",
"unified": "^7.1.0",
"rimraf": "^2.6.3"
},
"devDependencies": {
}
}