forked from HowProgrammingWorks/Book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "metaprogramming",
"version": "1.0.0",
"description": "Metaprogramming. Multi-paradigm approach in the Software Engineering.",
"main": "build.js",
"repository": {
"type": "git",
"url": "git+https://github.com/HowProgrammingWorks/Book.git"
},
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HowProgrammingWorks/Book/issues"
},
"homepage": "https://metarhia.com",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tshemsedinov"
},
"scripts": {
"test": "npm run lint",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\"",
"build": "npm run format && node content/build.js",
"format": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\""
},
"dependencies": {
"eslint": "^8.20.0",
"eslint-config-metarhia": "^8.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"metavm": "^1.2.1",
"pdfmake": "^0.2.5",
"prettier": "^2.7.1"
}
}