-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "cloud-detect-js",
"version": "1.0.12",
"description": "Detect's host's cloud provider",
"main": "build/index.js",
"typings": "build/index.d.ts",
"bin": "bin/index.js",
"repository": "git+https://github.com/vithalreddy/cloud-detect-js.git",
"license": "MIT",
"keywords": [
"cloud-detect-js",
"cloud-detector"
],
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"watch": "run-s clean build:main && run-p \"build:main -- -w\"",
"version": "standard-version",
"reset": "git clean -dfx && git reset --hard && npm i",
"clean": "trash build",
"prepare-release": "run-s reset version"
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"axios": "^0.19.0",
"commander": "^3.0.1"
},
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^2.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"standard-version": "^6.0.1",
"trash-cli": "^3.0.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-immutable": "^6.0.1",
"typescript": "^3.5.3",
"@types/node": "^12.7.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
}
}