-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "serina",
"version": "2.0.0-alpha.3",
"description": "Natural Language Parser for date and time in Javascript",
"repository": {
"type": "git",
"url": "git+https://github.com/h-dong/serina.git"
},
"keywords": [
"javascript",
"library",
"javascript-library",
"natural-language-processing",
"date-parser",
"time-parsing"
],
"author": "Hao Dong ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/h-dong/serina/issues"
},
"homepage": "https://github.com/h-dong/serina#readme",
"source": "./src/serina.ts",
"main": "./dist/serina.cjs",
"module": "./dist/serina.module.js",
"unpkg": "./dist/serina.umd.js",
"types": "./dist/serina.d.ts",
"alias": {
"filters": "./src/filters",
"utils": "./src/utils",
"lib": "./src/lib"
},
"scripts": {
"watch": "microbundle watch",
"build": "microbundle build --tsconfig tsconfig.build.json",
"build:docs": "./scripts/build-doc.sh",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "vitest",
"test:ci": "vitest run --coverage"
},
"browserslist": [
"defaults and supports es6-module",
"maintained node versions"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vitest/coverage-istanbul": "^0.25.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"microbundle": "^0.15.1",
"prettier": "^2.8.0",
"typescript": "^4.9.3",
"vitest": "^0.25.3"
}
}