-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 987 Bytes
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 987 Bytes
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
{
"name": "nabla-cpp",
"description": "CPP sample",
"branchVersion": "^1.0.1",
"branchPattern": "1.0.*",
"version": "1.0.1",
"pre-commit": [
"precommit"
],
"license": "UNLICENSED",
"engines": {
"node": ">=11.12.0",
"npm": ">=6.13.6",
"node-gyp": ">=3.0.3",
"grunt": ">=1.2.0"
},
"engine-strict": true,
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6
},
"plugins": [
"compat"
],
"rules": {
"compat/compat": "warn"
}
},
"stylelint": {
"plugins": [
"stylelint-no-unsupported-browser-features"
],
"rules": {
"plugin/no-unsupported-browser-features": true
},
"defaultSeverity": "warning"
},
"dependencies": {
"cli": "^1.0.1",
"markdown-toc": "^1.2.0"
},
"devDependencies": {
"@secretlint/secretlint-rule-preset-recommend": "^4.1.3"
}
}