-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "renault-ze-client",
"version": "0.1.5",
"description": "A client for accessing the Renault ZE Services API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"renault"
],
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git://github.com/watchforstock/renault-ze-client.git"
},
"author": "watchforstock",
"license": "Apache-2.0",
"dependencies": {
"es6-promise": "^4.2.5",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"@types/node": "^10.12.18",
"@types/isomorphic-fetch": "0.0.34",
"prettier": "^1.15.3",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
}
}