-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.39 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
{
"name": "@masala/xml",
"description": "Masala XML Parser",
"license": "GPL 3.0",
"version": "0.0.6",
"keywords": [
"date",
"masala",
"parser",
"parsec",
"javascript",
"ll",
"combinator",
"functional",
"composable"
],
"homepage": "https://github.com/masala/xml",
"author": {
"name": "Nicolas Zozol",
"email": "nicolas@robusta.io",
"url": "https://www.robusta.io"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/masala/date"
},
"bugs": {
"url": "https://github.com/masala/date/issues"
},
"licenses": [
{
"type": "LGPL2",
"url": "https://github.com/masala/date/blob/master/LICENSE"
}
],
"main": "dist/src/date-parser.js",
"files": ["dist/**/*", "masala-xml.d.ts"],
"types": "./masala-date.d.ts",
"engines": {
"node": ">= 6.11.4"
},
"scripts": {
"build": "tsc",
"prepare" : "npm run build",
"test": "jest",
"testone":"jest --testNamePattern=^combineTest$",
"prepublishOnly" : "npm test"
},
"devDependencies": {
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.15",
"eslint": "^4.18.2",
"jest": "^26.6.3",
"prettier": "^1.3.1",
"prettier-eslint-cli": "^3.4.3",
"ts-jest": "^26.4.3",
"typedoc": "^0.15.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@masala/parser": "1.0.0"
}
}