-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.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
{
"name": "commerceml-parser",
"version": "3.0.3",
"description": "Parser for CommerceML standard developed by 1c.ru",
"license": "MIT",
"repository": {
"type": "Github",
"url": "https://github.com/dobromyslov/commerceml-parser"
},
"homepage": "https://github.com/dobromyslov/commerceml-parser#readme",
"bugs": {
"url": "https://github.com/dobromyslov/commerceml-parser/issues"
},
"author": "Viacheslav Dobromyslov <viacheslav@dobromyslov.ru>",
"keywords": [
"commerceml",
"1C",
"parser"
],
"files": [
"dist"
],
"main": "dist",
"types": "dist",
"sideEffects": false,
"scripts": {
"example": "jest",
"test": "xo && jest",
"release": "yarn build && np --no-2fa",
"build": "del-cli dist && tsc"
},
"xo": {
"space": true,
"rules": {
"@typescript-eslint/indent": "off",
"import/no-unassigned-import": [
"error",
{
"allow": [
"reflect-metadata"
]
}
]
}
},
"dependencies": {
"commerceml-parser-core": "^2.1.3",
"emittery": "^0.8.1",
"entities": "^2.1.0",
"saxes": "^5.0.1",
"x2js": "^3.4.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^12.12.38",
"@types/sax": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"del-cli": "^3.0.1",
"eslint-config-xo": "^0.34.0",
"eslint-config-xo-typescript": "^0.37.0",
"jest": "^26.6.3",
"np": "^7.2.0",
"source-map-support": "^0.5.19",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"xo": "^0.37.1"
}
}