-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.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
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
{
"name": "syntest-javascript",
"version": "0.0.0",
"description": "Monorepo containing the various JavaScript parts of the SynTest ecosystem.",
"keywords": [
"syntest",
"automatic-test-generation"
],
"homepage": "https://www.syntest.org",
"bugs": {
"url": "https://github.com/syntest-framework/syntest-javascript/issues"
},
"license": "Apache-2.0",
"contributors": [
"Annibale Panichella",
"Mitchell Olsthoorn",
"Dimitri Stallenberg"
],
"repository": {
"type": "git",
"url": "git+https://github.com/syntest-framework/syntest-javascript.git"
},
"scripts": {
"lint-staged": "lint-staged",
"build": "nx run-many --target=build",
"build:affected": "nx affected --target=build",
"build:watch": "nx watch --all -- nx affected --target=build",
"clean": "nx run-many --target=clean && npm run clean:nx && npm run clean:root",
"clean:dist": "nx run-many --target=clean:dist",
"clean:nx": "nx reset",
"clean:root": "rm -rf .nyc_output dist node_modules coverage",
"graph": "nx graph",
"graph:affected": "nx affected:graph",
"format": "prettier --config .prettierrc.json --ignore-path .prettierignore --write .",
"format:check": "prettier --config .prettierrc.json --ignore-path .prettierignore --check .",
"lint": "nx run-many --target=lint",
"lint:fix": "nx run-many --target=lint:fix",
"test": "nx run-many --target=test",
"test:affected": "nx affected --target=test",
"test:coverage": "nx run-many --stream --target=test:coverage",
"test:coverage:ci": "nx run-many --target=test:coverage:ci",
"test:watch": "nx watch --all -- nx affected --target=test",
"postinstall": "husky install && nx run-many --target=setup"
},
"workspaces": [
"libraries/*",
"plugins/*",
"tools/*"
],
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@types/babel__core": "7.20.0",
"@types/babel__traverse": "7.18.5",
"@types/chai": "4.3.4",
"@types/figlet": "1.5.4",
"@types/lodash.clonedeep": "^4.5.7",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"@types/yargs": "17.0.20",
"@typescript-eslint/eslint-plugin": "5.45.1",
"@typescript-eslint/parser": "5.45.1",
"chai": "4.3.7",
"commitlint": "17.4.2",
"eslint": "^8.36.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^45.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "8.0.3",
"lerna": "6.4.1",
"lint-staged": "13.1.0",
"mocha": "10.2.0",
"nx": "15.7.1",
"nyc": "15.1.0",
"prettier": "2.8.1",
"sinon": "15.0.1",
"ts-node": "10.9.1",
"typed-emitter": "^2.1.0",
"typescript": "4.9.4",
"winston": "3.8.2"
},
"engines": {
"node": ">=16"
},
"lint-staged": {
"**/*": [
"prettier --config .prettierrc.json --ignore-path .prettierignore --write .",
"eslint --config .eslintrc.json --ignore-path .eslintignore . --fix"
]
}
}