generated from dirigeants/util-ts-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.35 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
{
"name": "@klasa/utils",
"version": "0.1.0",
"description": "some util thing.",
"main": "dist/src/index.js",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc",
"test": "ava",
"test:lint": "eslint --ext ts src test",
"test:coverage": "npx nyc check-coverage --lines 90 --functions 90 --branches 90",
"coverage": "npx nyc --require source-map-support/register npm test",
"coverage:report": "npx nyc report --reporter=html",
"lint": "eslint --fix --ext ts src test",
"docs": "typedoc"
},
"keywords": [],
"author": "dirigeants",
"license": "MIT",
"engines": {
"node": ">=10.1.0"
},
"files": [
"dist/src"
],
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"ava": "^3.15.0",
"eslint": "^6.8.0",
"eslint-config-klasa": "dirigeants/klasa-lint",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"typedoc": "^0.19.2",
"typescript": "^3.9.10"
},
"repository": {
"type": "git",
"url": "https://github.com/dirigeants/utils"
},
"ava": {
"files": [
"test/**/*.ts",
"!test/lib"
],
"typescript": {
"extensions": [
"ts"
],
"rewritePaths": {
"test/": "dist/test/"
}
}
}
}