generated from 1Computer1/istnlt
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
84 lines (84 loc) · 1.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "lexure",
"version": "0.17.0",
"description": "Parser and utilities for non-technical user input.",
"keywords": [
"lexer",
"parser",
"parsing",
"command",
"commands",
"api",
"args",
"arguments"
],
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"exports": {
"import": "./esm/index.mjs",
"require": "./dist/lib/index.js"
},
"files": [
"dist",
"esm"
],
"author": "1Computer <onecomputer00@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/1Computer1/lexure.git"
},
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"lint": "eslint ./src ./test --ext .ts",
"bench": "npm run build && node benchmarks",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"docs": "rimraf docs/reference && typedoc",
"test": "jest --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test"
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverageFrom": [
"src/*.{ts,js}"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
}
},
"devDependencies": {
"@types/benchmark": "^1.0.33",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"benchmark": "^2.1.4",
"eslint": "^7.2.0",
"eslint-plugin-jest": "^23.13.2",
"fast-check": "^1.25.1",
"jest": "^26.0.1",
"jest-config": "^26.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"typedoc": "^0.18.0",
"typedoc-plugin-markdown": "github:1Computer1/typedoc-plugin-markdown#custom",
"typescript": "^3.9.5"
}
}