-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.76 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
{
"name": "node-red-contrib-br-validations",
"version": "0.1.0",
"description": "Validates some Brazilian documents such as CPF, CNPJ and PIS - based on the br-validations library",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sciensa/node-red-contrib-br-validations.git"
},
"scripts": {
"test:unit": "mocha --opts test/unit/mocha.opts test/",
"postinstall": "npm --prefix ./node_modules/node-red install ./node_modules/node-red"
},
"keywords": [
"node-red",
"CPF",
"CNPJ",
"PIS",
"PASEP",
"PIS/PASEP",
"brazilian",
"documents",
"validations",
"br-validations"
],
"node-red": {
"nodes": {
"br-validations": "br/validations.js"
}
},
"author": "Sciensa Consulting <[email protected]> (http://github.com/sciensa)",
"contributors": [
"Aline Castro <[email protected]> (http://github.com/alinecastro33)",
"Rogério R. Alcântara <[email protected]> (http://github.com/roalcantara)",
"Valter Junior <[email protected]> (http://github.com/valterjnr)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sciensa/node-red-contrib-br-validations/issues"
},
"homepage": "https://github.com/sciensa/node-red-contrib-br-validations#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.4.1",
"nock": "^9.0.13",
"node-red": "git+ssh://[email protected]/node-red/node-red#0.16.2",
"path": "^0.12.7",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0"
},
"dependencies": {
"babel-core": "^6.24.1",
"babel-preset-env": "^1.4.0",
"br-validations": "^0.3.1",
"string": "^3.3.3"
}
}