forked from mseminatore/TeslaJS
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "teslajs",
"version": "4.7.5",
"description": "Full-featured Tesla REST API NodeJS package",
"dependencies": {
"promise": "^8.0.1",
"request": "^2.81.0"
},
"bugs": {
"url": "https://github.com/mseminatore/TeslaJS/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mseminatore/TeslaJS.git"
},
"main": "teslajs.js",
"scripts": {
"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",
"minify": "uglifyjs teslajs.js -c -m --comments -o teslajs.min.js",
"prepublishOnly": "uglifyjs teslajs.js -c -m --comments -o teslajs.min.js"
},
"keywords": [
"Tesla",
"Model S",
"Model X",
"Model 3",
"REST"
],
"author": {
"name": "Mark Seminatore",
"url": "https://github.com/mseminatore/TeslaJS"
},
"license": "MIT",
"devDependencies": {
"colors": "^1.3.3",
"commander": "^4.0.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^5.0.0",
"jshint": "^2.10.0",
"mocha": "^6.0.2",
"sepia": "^2.0.2"
}
}