-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 KB
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
{
"author": {
"name": "lf.amorim@bipbop.com.br"
},
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js"
],
"deprecated": false,
"description": "Validador da numeração CNJ escrito em JavaScript com suporte para navegadores, pegar e usar.",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"chai": "^4.3.3",
"es6-error": "^4.1.1",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-es5": "^1.2.0",
"eslint-plugin-import": "^2.22.1",
"iso-7064": "^1.0.2",
"mocha": "^8.3.1",
"pad": "^3.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.41.1"
},
"keywords": [
"cnj",
"justiça",
"jusbrasil",
"bipbop",
"law",
"lawtech"
],
"private": false,
"license": "MIT",
"main": "index.js",
"browser": "index.js",
"name": "validate-cnj",
"repository": {
"type": "git",
"url": "git+https://github.com/bipbop/validate-cnj.git"
},
"scripts": {
"clean": "rimraf index.js",
"prebuild": "npm run clean",
"build": "rollup -c",
"prepack": "npm run build",
"test": "mocha test/**/*.spec.js"
},
"version": "1.0.15"
}