-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.15 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.15 KB
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
88
89
90
91
92
93
94
{
"name": "@codeque/cli",
"version": "0.1.0-beta.0",
"description": "Supercharged multiline code search and replace tool",
"bin": {
"codeque": "./bin.js"
},
"author": "Jakub Mazurek (@jayu) <jakub.mazurek.dev@gmail.com>",
"license": "Sustainable Use License",
"engines": {
"node": ">=14"
},
"homepage": "https://codeque.co",
"main": "dist/cli.js",
"files": [
"dist/cli.js",
"dist/worker.js",
"LICENSE.md"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/babel__code-frame": "^7.0.3",
"@types/babel__generator": "^7.6.3",
"@types/dedent": "^0.7.0",
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@types/node-fetch": "^3.0.3",
"@types/object.omit": "^3.0.0",
"@types/unzipper": "^0.10.4",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-jest": "^27.4.4",
"babel-loader": "^8.2.3",
"babel-plugin-root-import": "^6.6.0",
"copy-webpack-plugin": "^10.2.0",
"deep-object-diff": "^1.1.7",
"dependency-cruiser": "^11.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.0",
"jest": "^27.4.4",
"node-fetch-commonjs": "^3.1.1",
"release-it": "^15.0.0",
"ts-jest": "^27.1.1",
"typescript": "^4.5.2",
"unzipper": "^0.10.11",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@babel/code-frame": "^7.16.0",
"@babel/generator": "7.16.0",
"@babel/parser": "7.16.4",
"@babel/plugin-syntax-typescript": "7.16.0",
"@babel/types": "^7.17.0",
"colorette": "^2.0.16",
"commander": "^8.3.0",
"dedent": "^0.7.0",
"dpdm": "^3.8.0",
"glob-escape": "^0.0.2",
"ignore": "^5.1.9",
"ora": "^6.0.1",
"prettier": "^2.5.1"
},
"scripts": {
"build:watch": "webpack --mode development",
"build": "webpack --mode production",
"build:standalone": "STANDALONE=true yarn build",
"build:browser": "tsc --skipLibCheck --project tsconfig.browser.json --outDir ts-dist",
"build:pkg": "yarn build:standalone && node ./tools/createPkg.js",
"build:clean": "rm -rf ./crate/pkg && rm -rf ./crate/target && rm -rf ./dist && rm -rf ./crate-prod",
"babel": "rm -rf babel-dist && BABEL_ENV=production babel ./ --extensions \".ts,.tsx\" --ignore 'tools' -d babel-dist",
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationDir ./dist/@types --skipLibCheck",
"typecheck": "tsc --skipLibCheck --noEmit --project tsconfig.json",
"dev": "node ./dist/dev.js",
"cli": "node ./dist/cli.js",
"test": "jest",
"test:setup": "node ./dist/tools/getFixtures.js",
"cruise": "depcruise --include-only \"^src\" --output-type dot src | dot -T svg > dependencygraph.svg",
"lint": "eslint --ext .js,.ts src",
"lint:fix": "yarn lint --fix",
"release": "release-it"
}
}