-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.31 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
{
"name": "nelson-minimalist-core",
"version": "0.4.0",
"description": "Nelson, an array programming language (minimalist-core)",
"copyright": "Copyright 2018-present Allan CORNET",
"scripts": {
"prettier": "run-s prettier:standard prettier:clang-format",
"prettier:standard": "prettier --write **/*.{js,json,yml,md}",
"prettier:xmldoc": "prettier --write modules/*/help/*/xml/*.xml",
"prettier:clang-format": "clang-format-launcher --verbose",
"prettier:check": "run-s prettier:check:standard prettier:check:clang-format",
"prettier:check:standard": "prettier --check **/*.{js,json,yml,md}",
"prettier:check:xmldoc": "prettier --check modules/*/help/*/xml/*.xml",
"prettier:check:clang-format": "clang-format-launcher -verify --verbose"
},
"devDependencies": {
"@prettier/plugin-xml": "2.2.0",
"prettier": "2.7.1",
"npm-run-all": "4.1.5",
"clang-format": "1.8.0",
"clang-format-launcher": "0.1.4"
},
"clang-format-launcher": {
"includeEndsWith": [
".h",
".hpp",
".hxx",
".cpp",
".c",
".cxx"
],
"excludePathContains": [
".git",
"node_modules",
"modules/commons/src/fmt/include/fmt",
"modules/files_folders_functions/src/include/dtl",
"modules/interpreter/src/grammar/NelSonParser.cpp"
]
}
}