-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
78 lines (78 loc) · 2.62 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
{
"name": "parser-ts",
"version": "0.7.0",
"description": "String parser combinators for TypeScript",
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" \"scripts/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\" \"scripts/**/*.ts\"",
"dtslint": "dtslint dtslint",
"mocha": "mocha -r ts-node/register test/*.ts",
"prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test,examples}/**/*.ts\"",
"fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test,examples}/**/*.ts\"",
"test": "npm run lint && npm run prettier && npm run jest && npm run docs",
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json && npm run import-path-rewrite && ts-node scripts/build",
"postbuild": "prettier --loglevel=silent --write \"./dist/**/*.ts\"",
"prepublishOnly": "ts-node scripts/pre-publish",
"prerelease": "npm run build",
"release": "ts-node scripts/release",
"import-path-rewrite": "import-path-rewrite",
"jest": "jest --ci --coverage",
"docs": "docs-ts"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/parser-ts.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/parser-ts/issues"
},
"homepage": "https://github.com/gcanti/parser-ts",
"peerDependencies": {
"fp-ts": "^2.14.0"
},
"devDependencies": {
"@types/babel__code-frame": "^7.0.3",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.1",
"@types/node": "^12.6.8",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"docs-ts": "^0.7.2",
"dtslint": "github:gcanti/dtslint",
"eslint": "^8.39.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fp-ts": "^2.14.0",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"jest": "^29.5.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"tags": [
"typescript",
"parser-combinators",
"functional-programming",
"fp-ts"
],
"keywords": [
"typescript",
"parser-combinators",
"functional-programming",
"fp-ts"
],
"dependencies": {
"@babel/code-frame": "^7.0.0"
}
}