-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.1 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
{
"name": "@mappable-world/mappable-cli",
"version": "0.0.36",
"description": "Library for encapsulating the logic of autotests and building packages mappable.world js API",
"main": "dist/index.js",
"dependencies": {
"dotenv": "16.3.1",
"marked": "^9.0.2",
"yargs": "17.7.2"
},
"devDependencies": {
"@mappable-world/mappable-types": "^0.0.20",
"@testing-library/react": "^12.1.2",
"@types/got": "9.6.12",
"@types/jest": "29.5.2",
"@types/jsdom": "21.1.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"ajv": "7.2.4",
"cross-fetch": "4.0.0",
"css-loader": "6.8.1",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"got": "11.8.6",
"html-webpack-plugin": "^5.5.3",
"identity-obj-proxy": "3.0.0",
"jest": "29.5.0",
"jsdom": "22.1.0",
"postcss": "^8.4.39",
"postcss-loader": "^8.1.1",
"prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"style-loader": "3.3.3",
"terser-webpack-plugin": "5.3.9",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"ts-node": "^10.9.1",
"typescript": "5.1.6",
"vue": "^3.4.21",
"webpack": "5.88.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"scripts": {
"bump": "npm version patch --no-git-tag-version && npm run bump:git",
"bump:git": "git add --all && git commit -m \"New version $npm_package_version Read more https://github.com/mappable-world/mappable-cli/releases/tag/$npm_package_version\" && git tag $npm_package_version && git push --tags origin HEAD:main",
"test": "jest",
"lint": "eslint ./",
"build": "tsc --project tsconfig.cli.json && npm run build:hashbang",
"build:hashbang": "echo \"#!/usr/bin/env node\\n\\n$(cat ./dist/index.js)\" > ./dist/index.js"
},
"keywords": [
"mappable",
"mappable-world",
"utils",
"cli",
"mappable-cli",
"packages"
],
"license": "Apache-2",
"bin": {
"mappable-cli": "./dist/index.js"
}
}