-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
52 lines (52 loc) · 1.37 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
{
"author": {
"name": "Mark Seminatore",
"url": "https://github.com/mseminatore/TeslaJS"
},
"bugs": {
"url": "https://github.com/mseminatore/TeslaJS/issues"
},
"bundleDependencies": [],
"dependencies": {
"promise": "^8.0.3",
"request": "^2.88.2",
"ws": "^8.0.0"
},
"deprecated": false,
"description": "Full-featured Tesla REST API NodeJS package",
"devDependencies": {
"colors": "^1.4.0",
"commander": "^12.0.0",
"coveralls": "^3.0.11",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^8.0.0",
"jshint": "^2.13.0",
"mocha": "^10.0.0",
"sepia": "^2.0.2"
},
"directories": {
"doc": "docs",
"test": "test"
},
"homepage": "https://www.teslajs.org",
"keywords": [
"Tesla",
"Model S",
"Model X",
"Model 3",
"REST"
],
"license": "MIT",
"main": "teslajs.js",
"name": "teslajs",
"repository": {
"type": "git",
"url": "https://github.com/mseminatore/TeslaJS.git"
},
"scripts": {
"minify": "uglifyjs teslajs.js -c -m --comments -o teslajs.min.js",
"prepublishOnly": "uglifyjs teslajs.js -c -m --comments -o teslajs.min.js",
"test": "jshint teslajs.js samples && ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --verbose"
},
"version": "4.10.0"
}