forked from oracle-commerce-cloud/occ-layout-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.32 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "occ-layout-manager",
"description": "Simple oracle-commerce-cloud layout/instances manager",
"version": "1.0.0",
"main": "dist/index.js",
"bin": {
"olm": "dist/index.js"
},
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.pack.json",
"test": "jest --forceExit --coverage --verbose",
"coveralls": "jest --forceExit --coverage --coverageReporters=text-lcov | coveralls",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"tsc -p tsconfig.pack.json -w\" \"npm run watch-node\"",
"watch-node": "npm run build && nodemon --delay 1 dist/index.js -k $KSTAGE -n $NSTAGE",
"lint": "tslint -c tslint.json -p tsconfig.pack.json",
"format": "prettier-tslint fix \"./**/*.ts\"",
"prepack": "echo \"prepack...\" && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oracle-commerce-cloud/occ-layout-manager.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(ts|tsx)": "prettier-tslint fix"
},
"dependencies": {
"axios": "^0.19.0",
"commander": "^3.0.2",
"inquirer": "^7.0.0",
"inquirer-autocomplete-prompt": "latest",
"listr": "^0.14.3",
"module-alias": "^2.2.2",
"ora": "latest",
"qs": "^6.9.0",
"rxjs": "^6.5.3"
},
"devDependencies": {
"@types/inquirer": "^6.5.0",
"@types/jest": "^24.0.19",
"@types/listr": "^0.14.2",
"@types/node": "^12.11.7",
"@types/qs": "^6.5.3",
"axios-retry": "^3.1.2",
"concurrently": "^5.0.0",
"coveralls": "^3.0.6",
"fuzzy": "^0.1.3",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-mock-axios": "^3.1.2",
"lint-staged": "^9.4.2",
"nodemon": "^1.19.3",
"prettier": "^1.18.2",
"prettier-tslint": "^0.4.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"_moduleAliases": {
"@api": "dist/api",
"@helpers": "dist/helpers",
"@inquirer": "dist/inquirer",
"@listr": "dist/listr",
"@locales": "dist/locales",
"@Types": "dist/types"
},
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/index.d.ts"
],
"keywords": [
"cli",
"occ",
"oracle",
"typescript",
"unit-testing",
"commerce-cloud"
]
}