-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.31 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
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@coat/cli",
"version": "0.0.27",
"author": "Peter Juras <[email protected]>",
"bin": {
"coat": "bin/coat.js"
},
"dependencies": {
"@babel/code-frame": "7.18.6",
"@babel/parser": "7.21.2",
"@babel/types": "7.21.2",
"ajv": "8.12.0",
"boxen": "5.1.2",
"chalk": "4.1.2",
"commander": "10.0.0",
"execa": "5.1.1",
"fs-extra": "11.1.0",
"immer": "9.0.19",
"import-from": "4.0.0",
"import-local": "3.1.0",
"inquirer": "8.2.5",
"js-yaml": "4.1.0",
"json-colorizer": "2.2.2",
"json-stable-stringify": "1.0.2",
"json5": "2.2.3",
"leven": "3.1.0",
"lodash": "4.17.21",
"ora": "5.4.1",
"prettier": "2.8.4",
"resolve-from": "5.0.0",
"semver": "7.3.8",
"sha3": "2.1.4",
"single-trailing-newline": "1.0.0",
"tmp": "0.2.1",
"type-fest": "2.19.0",
"unquoted-property-validator": "1.1.0",
"wrap-ansi": "7.0.0"
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.21.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.21.0",
"@types/babel__code-frame": "7.0.3",
"@types/fs-extra": "11.0.1",
"@types/inquirer": "8.2.6",
"@types/jest": "29.4.0",
"@types/js-yaml": "4.0.5",
"@types/json-stable-stringify": "1.0.34",
"@types/lodash": "4.14.191",
"@types/semver": "7.3.13",
"@types/single-trailing-newline": "1.0.0",
"@types/tmp": "0.2.3",
"@types/which": "2.0.2",
"@types/wrap-ansi": "3.0.0",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"concurrently": "7.6.0",
"cross-env": "7.0.3",
"eslint": "8.35.0",
"eslint-config-prettier": "8.7.0",
"jest": "29.5.0",
"lint-staged": "13.1.2",
"memfs": "3.4.13",
"memory-streams": "0.1.3",
"prettier": "2.8.4",
"rimraf": "4.4.0",
"strip-ansi": "7.0.1",
"ts-json-schema-generator": "1.2.0",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"which": "3.0.0"
},
"engines": {
"node": ">=14"
},
"keywords": [
"coat"
],
"license": "MIT",
"main": "build/index.js",
"lint-staged": {
"*.{ts,js}": [
"eslint --fix --max-warnings=0",
"prettier --write"
]
},
"scripts": {
"build": "concurrently npm:build:*",
"build:babel": "babel src -d build --extensions \".ts\" --ignore \"**/*.d.ts,**/*.test.ts\"",
"build:typedefs": "tsc -p tsconfig.build.json",
"build:generate": "ts-node scripts/create-schemas.ts",
"lint": "concurrently npm:lint:*",
"lint:eslint": "eslint \"{src,test}/**/*{.ts,.js}\" --max-warnings 0",
"lint:prettier": "prettier --check src test",
"lint:tsc": "tsc",
"lint-staged": "lint-staged",
"prebuild": "rimraf build",
"prepack": "cross-env BABEL_ENV=production npm run build",
"test": "cross-env JEST_PROJECT=\"Unit tests\" jest",
"test:e2e": "cross-env JEST_PROJECT=\"E2E tests\" jest --coverage=false",
"test:e2e-test-session-create": "ts-node scripts/e2e-test-session-create",
"test:e2e-test-session-destroy": "ts-node scripts/e2e-test-session-destroy",
"test:all": "jest",
"watch-build": "concurrently npm:watch-build:*",
"watch-build:babel": "npm run build:babel -- --watch",
"watch-build:typedefs": "npm run build:typedefs -- --watch",
"watch-lint:tsc": "npm run lint:tsc -- --watch"
}
}