-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 1.93 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 1.93 KB
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
{
"name": "plugin-prov",
"description": "Ligoj Provisioning plugin",
"author": "kloudy.io",
"keywords": [
"bootstrap",
"jupiter",
"SaaS"
],
"version": "1.0.0",
"homepage": "https://github.com/ligoj/plugin-prov",
"engines": {
"jetty": "9.4"
},
"contributors": [
"fabrice.daugan@gmail.com"
],
"license": "TBD",
"bugs": "https://github.com/ligoj/plugin-prov/issues",
"repository": {
"type": "git",
"url": "https://github.com/ligoj/plugin-prov"
},
"happiness": {
"globals": [
"jQuery",
"DEBUG_ENABLED",
"traceDebug",
"traceLog",
"window",
"define",
"_",
"REST_PATH",
"Handlebars",
"momentManager",
"applicationManager",
"notifyManager",
"validationManager",
"$",
"document",
"traceLog",
"navigator",
"requirejs",
"location",
"bootbox",
"errorManager",
"formatManager",
"moment",
"securityManager"
]
},
"standard": {
"globals": [
"$",
"jQuery",
"define"
],
"ignore": [
"node_modules/**"
],
"plugins": [
"html"
],
"parser": "babel-eslint",
"envs": [
"jest"
]
},
"stylelint": {
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"include",
"mixin"
]
}
],
"indentation": "tab",
"selector-combinator-space-before": "never",
"selector-combinator-space-after": "never",
"selector-list-comma-newline-after": "never-multi-line",
"number-leading-zero": "never"
}
},
"private": true,
"analyze": true,
"devDependencies": {
"eslint": "^4.12.1",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-vue": "^2.1.0",
"happiness": ">=7",
"jshint": "^2.9.5"
},
"dependencies": {
"d3": ">=4",
"cascade": "0.0.1",
"flag-icon-css": "3.0.0"
}
}