-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.57 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
{
"license": "MIT",
"name": "iniptime",
"version": "0.0.3-alpha.7",
"main": "built/index.js",
"author": "Seia-Soto <seia@outlook.kr>",
"packageManager": "yarn@3.1.1",
"type": "module",
"scripts": {
"build": "yarn build:esm && yarn build:type",
"build:esm": "swc ./src -d ./built -s",
"build:type": "tsc --emitDeclarationOnly --declaration --outDir ./built",
"build:docs": "typedoc src/index.ts",
"release": "standard-version",
"lint": "eslint ./src --ext .js,.ts",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git://github.com/seia-soto/iniptime.git"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
]
},
"devDependencies": {
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.127",
"@types/got": "^9.6.12",
"@types/node": "^17.0.8",
"@types/qs": "^6.9.7",
"@types/tough-cookie": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"ava": "^4.0.1",
"eslint": "^8.6.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"standard-version": "^9.3.2",
"tough-cookie": "^4.0.0",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"date-fns": "^2.28.0",
"got": "^12.0.0",
"qs": "^6.10.2"
}
}