-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.5 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
{
"name": "opensphere-plugin-analyze",
"version": "1.0.0",
"description": "Analyze window and tools for OpenSphere",
"keywords": [],
"author": "William Wall",
"license": "ISC",
"directories": {
"src": "src",
"test": "test",
"externs": "externs",
"scss": "scss",
"views": "views"
},
"build": {
"type": "plugin",
"config": [
"config/analyze-layout.json"
],
"gcc-src": [
"src/**.js"
],
"ignoreUncompiled": {
"mist.analyze.TOOLS_PATH": true
},
"index": "tools.js",
"scss": "scss/tools.scss",
"gcc": {
"entry_point": [
"goog:plugin.tools.ToolsPlugin"
],
"define": [
"mist.analyze.TOOLS_PATH=''"
]
}
},
"scripts": {
"lint": "run-p lint:css lint:html lint:js",
"lint:css": "stylelint 'scss/**/*.scss'",
"lint:html": "html-validate 'views/**/*.html'",
"lint:js": "eslint --cache 'src/**/*.js'",
"postinstall": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@ngageoint/eslint-config-opensphere": "^7.1.1",
"eslint": "^8.0.1",
"html-validate": "6.1.0",
"html-validate-angular": "^3.0.2",
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"stylelint": "^14.0.0",
"stylelint-config-opensphere": "^1.0.0"
},
"dependencies": {
"golden-layout": "^1.5.9",
"milstd": "^0.1.6",
"milsymbol": "^2.0.0",
"opensphere": "0.0.0-development",
"vega": "=5.19.1"
}
}