-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.43 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
{
"name": "@masala/x",
"type": "module",
"description": "Masala eXtensions: nice snippets for the Masala Parser users",
"license": "GPL-3.0-or-later",
"version": "0.1.7",
"keywords": [
"date",
"masala",
"parser",
"parsec",
"javascript",
"ll",
"combinator",
"functional",
"composable"
],
"homepage": "https://github.com/masala/eXtension",
"author": {
"name": "Nicolas Zozol",
"email": "[email protected]",
"url": "https://www.robusta.io"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/masala/eXtension"
},
"bugs": {
"url": "https://github.com/masala/eXtension/issues"
},
"licenses": [
{
"type": "LGPL2",
"url": "https://github.com/masala/date/blob/master/LICENSE"
}
],
"main": "build/src/x.js",
"files": [
"build/**/*",
"masala-x.d.ts"
],
"types": "./masala-x.d.ts",
"engines": {
"node": ">= 6.11.4"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "vitest run --dir src",
"testone": "jest --testNamePattern=^combineTest$",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@babel/preset-typescript": "^7.12.1",
"eslint": "^4.18.2",
"prettier": "^1.3.1",
"prettier-eslint-cli": "^3.4.3",
"typedoc": "^0.15.0",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"dependencies": {
"@masala/parser": "1.0.0"
}
}