-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.16 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
{
"name": "@sasjs/utils",
"description": "Utilities and types for SASjs",
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
},
"typings": "./index.d.ts",
"scripts": {
"nodeVersionMessage": "echo \u001b[33m make sure you are running node lts version \u001b[0m",
"preinstall": "npm run nodeVersionMessage",
"prebuild": "npm run nodeVersionMessage",
"build": "rimraf build && tsc",
"postbuild": "npm run copy:macros",
"copy:macros": "ts-node ./scripts/copySASjsCore.ts",
"prepublishOnly": "cp -r ./build/* . && rm -rf ./build && rm -rf ./src && rm jest.config.js && rm tsconfig.json",
"postpublish": "git clean -fd",
"package:lib": "npm run build && cp ./package.json build && cp README.md build && cd build && npm version \"5.0.0\" && npm pack",
"test": "jest --config=jest.config.js --coverage",
"lint:fix": "npx prettier --write \"{src,test}/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}\"",
"lint": "npx prettier --check \"{src,test}/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}\"",
"prepare": "git rev-parse --git-dir && git config core.hooksPath ./.git-hooks || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sasjs/utils.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sasjs/utils/issues"
},
"homepage": "https://github.com/sasjs/utils#readme",
"devDependencies": {
"@sasjs/core": "^4.43.1",
"@types/cli-table": "0.3.0",
"@types/find": "0.2.1",
"@types/jest": "29.4.0",
"@types/rimraf": "3.0.1",
"@types/valid-url": "1.0.3",
"babel-jest": "29.4.3",
"jest": "29.4.3",
"jest-extended": "3.2.4",
"ts-jest": "29.0.5",
"ts-loader": "9.2.6",
"ts-node": "10.9.1",
"typescript": "4.5.4"
},
"dependencies": {
"@fast-csv/format": "4.3.5",
"@types/fs-extra": "9.0.13",
"@types/prompts": "2.0.13",
"chalk": "4.1.1",
"cli-table": "0.3.6",
"consola": "2.15.0",
"find": "0.3.0",
"fs-extra": "10.0.0",
"jwt-decode": "3.1.2",
"prompts": "2.4.1",
"rimraf": "3.0.2",
"valid-url": "1.0.9"
}
}