-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "juristek-parser",
"version": "5.0.16",
"types": "dist/index.d.ts",
"description": "Parser de XML do BIPBOP Juristek para NodeJS.",
"main": "dist/index.js",
"browser": "dist/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"clear": "rimraf dist/*.js",
"prebuild": "npm run clear",
"build": "rollup -c",
"prepack": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/bipbop/juristek-parser.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bipbop/juristek-parser/issues"
},
"homepage": "https://github.com/bipbop/juristek-parser#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"moment": "^2.29.1",
"numeral": "^2.0.6",
"validate-cnj": "^1.0.15"
},
"devDependencies": {
"@types/cheerio": "^0.22.22",
"camel-case": "^4.1.1",
"es6-error": "^4.1.1",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"fix-utf8": "^1.1.1",
"jest": "^26.5.3",
"lodash": "^4.17.20",
"object-assign": "^4.1.1",
"rollup": "^2.31.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4"
}
}