This repository was archived by the owner on Feb 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.03 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.03 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
{
"name": "flares",
"version": "1.0.0-beta.0",
"repository": "https://github.com/vaderkos/flares",
"author": "Mykyta Smirnov <mykyta.smirnov.dev@gmail.com>",
"contributors": [],
"license": "MIT",
"private": true,
"type": "module",
"workspaces": [
"packages/core",
"packages/express",
"packages/camel-case-flares",
"packages/camel-case-code-flares",
"packages/pascal-case-flares",
"packages/pascal-case-code-flares"
],
"scripts": {
"build": "npx lerna run build",
"setup": "yarn && yarn run build && npx lerna bootstrap && npx lerna link",
"lint": "npx eslint packages/**/*.ts",
"lint:fix": "npx eslint packages/**/*.ts --fix",
"test": "yarn run test:compile && yarn run test:unit",
"test:unit": "npx nyc mocha",
"test:compile": "npx tsc --noEmit"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.14",
"@types/express": "^4.17.8",
"@types/gulp": "^4.0.7",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.8",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"chai": "^4.2.0",
"eslint": "^7.11.0",
"eslint-plugin-unicorn": "^23.0.0",
"gulp": "^4.0.2",
"husky": "^4.3.0",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"lerna": "^3.22.1"
},
"husky": {
"hooks": {
"pre-push": "yarn run lint && yarn run test"
}
},
"mocha": {
"timeout": 10000,
"require": "ts-node/register",
"extension": [
"ts"
],
"color": true,
"diff": true,
"v8-stack-trace-limit": 50,
"spec": [
"./**/*.spec.ts"
],
"package": "./package.json",
"ui": "tdd"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": [
"packages/**/*.ts"
],
"exclude": [
"packages/**/index.ts",
"packages/**/*.spec.ts",
"packages/**/dist/**/*"
]
}
}