-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.63 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": "@4success/successfactors-cli-tools",
"version": "1.0.1",
"description": "Ferramentas CLI SuccessFactors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"bin": {
"4s-sf-tools": "./dist/index.js"
},
"scripts": {
"execute-ts": "node_modules/.bin/ts-node src/index.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"directories": {
"test": "src/__tests__"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/papaparse": "^5.2.5",
"axios": "^0.21.0",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"clui": "^0.3.6",
"configstore": "^5.0.1",
"dotenv": "^8.2.0",
"got": "^11.8.1",
"inquirer": "^7.3.3",
"lodash": "^4.17.20",
"minimist": "^1.2.5",
"moment": "^2.29.1",
"odata-client": "^0.6.14",
"papaparse": "^5.3.0",
"touch": "^3.1.0"
},
"devDependencies": {
"@types/clear": "^0.1.1",
"@types/clui": "^0.3.0",
"@types/configstore": "^4.0.0",
"@types/figlet": "^1.2.1",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.10",
"aws-sdk": "^2.809.0",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
}
}