forked from girder/girder
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
108 lines (108 loc) · 3.22 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@girder/lint",
"version": "0.0.0",
"description": "Extensible data management platform",
"homepage": "https://girder.readthedocs.org",
"bugs": {
"url": "https://github.com/girder/girder/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/girder/girder.git"
},
"engines": {
"node": ">=10.0",
"npm": ">=5.2"
},
"devDependencies": {
"@girder/eslint-config": "file:./girder/web_client/eslint-config",
"@girder/pug-lint-config": "file:./girder/web_client/pug-lint-config",
"eslint": "^8.20.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-backbone": "^2.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.0",
"nyc": "^15.1.0",
"phantomjs-prebuilt": "^2.1.16",
"pug-lint": "^2.6.0",
"stylelint": "^15.11.0",
"stylelint-stylus": "^0.18.0"
},
"scripts": {
"lint": "eslint --cache . && pug-lint . && stylelint **/*.styl",
"docs": "esdoc",
"coverage": "nyc report && mv build/test/artifacts/web_coverage/cobertura-coverage.xml build/test/coverage/",
"publish-all": "./.circleci/publish_npm.sh"
},
"esdoc": {
"source": "girder/web_client/src",
"destination": "build/docs/web",
"index": "README.rst",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"brand": {
"title": "Girder",
"description": "Web-based data management platform",
"repository": "https://github.com/girder/girder",
"author": "Kitware, Inc.",
"image": "girder/web_client/src/assets/Girder_Mark.png"
}
}
}
]
},
"eslintConfig": {
"extends": "@girder",
"overrides": [
{
"files": [
"girder/web_client/test/**",
"plugins/*/plugin_tests/**"
],
"globals": {
"Backbone": true,
"_": true,
"girderTest": true,
"girder": true,
"moment": true
},
"env": {
"jasmine": true,
"jquery": true
}
}
],
"root": true
},
"eslintIgnore": [
"build/",
"girder/web_client/test/lib/",
"**/node_modules/"
],
"nyc": {
"reporter": [
"cobertura",
"html",
"text-summary"
],
"report-dir": "build/test/artifacts/web_coverage",
"temp-dir": "build/test/coverage/web_temp"
},
"pugLintConfig": {
"extends": "@girder/pug-lint-config",
"excludeFiles": [
"**/node_modules/",
"**/.tox/"
]
},
"stylelint": {
"extends": [
"stylelint-stylus/standard"
]
}
}