-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 1.92 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
{
"name": "cursornext",
"version": "0.2.4",
"type": "commonjs",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"exports": {
".": "./cjs/index.js",
"./module": "./esm/index.js"
},
"files": [
"cjs",
"esm",
"*.umd.js",
"*.map",
"*.d.ts"
],
"author": "clitetailor",
"license": "MIT",
"description": "A minimalist framework for parsing",
"keywords": [
"cursor",
"parser"
],
"scripts": {
"build": "gulp clean && gulp build",
"clean": "gulp clean",
"format": "prettier -c .prettierrc.yaml --write **/*.{ts,md,yml,yaml,json}",
"test": "ava",
"prepack": "pnpm clean && pnpm format && pnpm test && pnpm build",
"preversion": "pnpm build && pnpm clean && pnpm format && pnpm test && gulp build:deno"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/clitetailor/cursornext.git"
},
"browserslist": [
"maintained node versions",
"not dead"
],
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-typescript": "^6.0.0",
"@types/node": "14.10.1",
"ava": "3.12.1",
"del": "^5.1.0",
"esm": "^3.2.25",
"fs-extra": "^9.0.1",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"merge-stream": "^2.0.0",
"prettier": "^2.1.1",
"rollup": "^2.26.11",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"bugs": {
"url": "https://github.com/clitetailor/cursornext/issues"
},
"homepage": "https://github.com/clitetailor/cursornext",
"ava": {
"require": [
"ts-node/register"
],
"files": [
"test/**/*.ts",
"!test/helpers/**/*"
],
"extensions": [
"ts"
],
"timeout": "2m"
},
"dependencies": {
"tslib": "^2.0.1"
}
}