-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.45 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
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "x-fidelity",
"version": "2.17.1",
"description": "cli for opinionated framework adherence checks",
"main": "dist/xfidelity",
"bin": {
"xfidelity": "./dist/xfidelity"
},
"scripts": {
"build": "rimraf dist/ && tsc && yarn copy-files",
"copy-files": "cp src/rules/*.json dist/rules/ && cp src/archetypes/*.json dist/archetypes/ && cp dist/index.js dist/xfidelity",
"start": "OPENAI_API_KEY= jest --watch",
"test": "yarn lint && OPENAI_API_KEY= jest",
"test:coverage": "OPENAI_API_KEY= jest --coverage",
"commit": "yarn test && git-cz",
"release": "semantic-release",
"test-bin-install": "yarn build && yarn global bin && yarn global add file:$PWD",
"build-run": "yarn build && node . --dir . | jq -R -r '. as $line | try fromjson catch $line'",
"start-server": "ts-node src/index.ts --mode server",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"perftest": "artillery run src/server/configServer.performance.test.yml",
"perftest:cloud": "echo 'expecting env var ARTILLERY_CLOUD_API_KEY from artillery.io' && artillery run src/server/configServer.performance.test.yml --record",
"bats:install": "cd ./cli-testing && ./installBatsTesting.sh",
"bats:test": "cd ./cli-testing && bats *.bats"
},
"repository": "git@github.com:zotoio/x-fidelity.git",
"author": "wyvern8 <io@zoto.io>",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"yarn": ">=1.22.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/esprima": "^4.0.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"@types/node": "^22.1.0",
"@types/ora": "^3.2.0",
"@types/parse-json": "^4.0.2",
"@types/prettyjson": "^0.0.33",
"@types/semver": "^7.5.8",
"@types/supertest": "^6.0.2",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^5.0.0",
"conventional-recommended-bump": "^10.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.15.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.4.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@types/body-parser": "^1.19.5",
"@yarnpkg/lockfile": "^1.1.0",
"ajv": "^8.17.1",
"axios": "^1.7.8",
"body-parser": "^1.20.3",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"esprima": "^4.0.1",
"express": "^4.21.1",
"express-rate-limit": "^7.4.0",
"helmet": "^8.0.0",
"json-rules-engine": "^7.2.1",
"lodash": "^4.17.21",
"nodemon": "^3.0.2",
"openai": "^4.19.0",
"ora": "^8.0.1",
"prettyjson": "^1.2.5",
"semver": "^7.6.2",
"winston": "^3.13.0",
"yarn": "^1.22.21"
},
"peerDependencies": {
"artillery": "^2.0.0-31"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}