-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
64 lines (64 loc) · 1.27 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
{
"name": "generator-addin",
"version": "3.4.2",
"description": "MyGeotab/Geotab Drive add-in generator",
"homepage": "https://github.com/geotab/generator-addin",
"author": {
"name": "The Geotab Team",
"email": "[email protected]",
"url": "https://geotab.com/sdk"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"geotab",
"mygeotab",
"drive",
"addin",
"add-in",
"yeoman-generator"
],
"resolutions": {
"ansi-regex": "5.0.1"
},
"dependencies": {
"ansi-regex": "^5.0.1",
"camelcase": "^3.0.0",
"chalk": "^1.0.0",
"yeoman-generator": "^5.4.2",
"yosay": "^2.0.2"
},
"devDependencies": {
"mocha": "^9.1.3",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^3.8.0",
"yeoman-test": "^6.2.0"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"browser": true,
"mocha": true
},
"rules": {
"quotes": [
2,
"single"
]
},
"globals": {
"geotab": true,
"dialogPolyfill": true,
"GeotabApi": true,
"rison": true
}
},
"repository": "https://github.com/Geotab/generator-addin",
"scripts": {
"test": "mocha test --timeout 10000"
},
"license": "Apache-2.0"
}