-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.97 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
70
71
72
{
"name": "validation-bridge",
"version": "1.14.4",
"description": "",
"main": "node.js",
"module": "browser.js",
"browser": "browser.js",
"scripts": {
"build": "npm run build:node & npm run build:browser",
"build:node": "babel src --out-dir lib --source-maps inline",
"build:browser": "webpack --mode production",
"prepare": "npm run build",
"codestyle": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redcatjs/validation-bridge.git"
},
"keywords": [
"validation",
"validate",
"validator"
],
"author": "Jo <[email protected]> (https://redcat.ninja)",
"license": "MIT",
"bugs": {
"url": "https://github.com/redcatjs/validation-bridge/issues"
},
"homepage": "https://github.com/redcatjs/validation-bridge#readme",
"dependencies": {
"dompurify": "^1.0.4",
"mysql-validator": "^0.1.6",
"sanitize-html": "^1.18.2",
"siret": "^1.0.1",
"typeable": "^2.4.1",
"validator": "^10.1.0",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0",
"babel-loader": "^8.0.2",
"standard": "^11.0.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.1"
},
"files": [
"lib",
"browser.js",
"browser.js.map",
"node.js"
],
"standard": {
"parser": "babel-eslint",
"ignore": [
"/lib/",
"/browser.js"
]
}
}