-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.25 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
{
"name": "@coat/cli",
"version": "0.0.23",
"author": "Peter Juras <[email protected]>",
"bin": {
"coat": "bin/coat.js"
},
"dependencies": {
"@babel/code-frame": "7.14.5",
"@babel/parser": "7.15.6",
"@babel/types": "7.15.6",
"ajv": "8.6.2",
"boxen": "5.0.1",
"chalk": "4.1.2",
"commander": "8.1.0",
"execa": "5.1.1",
"fs-extra": "10.0.0",
"immer": "9.0.6",
"import-from": "4.0.0",
"import-local": "3.0.2",
"inquirer": "8.1.2",
"js-yaml": "4.1.0",
"json-colorizer": "2.2.2",
"json-stable-stringify": "1.0.1",
"json5": "2.2.0",
"leven": "3.1.0",
"lodash": "4.17.21",
"ora": "5.4.1",
"prettier": "2.4.0",
"resolve-from": "5.0.0",
"semver": "7.3.5",
"sha3": "2.1.4",
"single-trailing-newline": "1.0.0",
"tmp": "0.2.1",
"type-fest": "1.4.0",
"unquoted-property-validator": "1.1.0",
"wrap-ansi": "7.0.0"
},
"devDependencies": {
"@babel/cli": "7.15.4",
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.6",
"@babel/preset-typescript": "7.15.0",
"@types/babel__code-frame": "7.0.3",
"@types/fs-extra": "9.0.12",
"@types/inquirer": "7.3.3",
"@types/jest": "27.0.1",
"@types/js-yaml": "4.0.3",
"@types/json-stable-stringify": "1.0.33",
"@types/lodash": "4.14.172",
"@types/semver": "7.3.8",
"@types/single-trailing-newline": "1.0.0",
"@types/tmp": "0.2.1",
"@types/wrap-ansi": "3.0.0",
"@typescript-eslint/eslint-plugin": "4.31.0",
"@typescript-eslint/parser": "4.31.0",
"concurrently": "6.2.1",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"jest": "27.1.1",
"lint-staged": "11.1.2",
"memfs": "3.2.4",
"memory-streams": "0.1.3",
"prettier": "2.4.0",
"strip-ansi": "7.0.0",
"ts-json-schema-generator": "0.95.0",
"ts-node": "10.2.1",
"typescript": "4.4.2",
"which": "2.0.2"
},
"engines": {
"node": ">=12"
},
"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": "rm -rf 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"
}
}