-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.17 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
{
"name": "@opencreek/ext",
"version": "2.7.4",
"description": "",
"main": "build/index.js",
"files": [
"build/**",
"src/**"
],
"scripts": {
"test": "ava",
"lint": "prettier --check . && eslint --cache --max-warnings=0 .",
"lint:fix": "prettier --write . && eslint --cache --max-warnings=0 --fix .",
"build": "tsc"
},
"author": "Opencreek Technology<[email protected]>",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "github:opencreek/typescript-extensions"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"auto": "^11.1.2",
"ava": "^5.3.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"prettier": "^3.0.1",
"typescript": "5.1.6"
},
"prettier": {
"semi": false
},
"ava": {
"files": [
"src/**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"@opencreek/deno-std-collections": "^0.109.1"
}
}