package.json
2.68 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"_from": "validator@^5.2.0",
"_id": "validator@5.7.0",
"_inBundle": false,
"_integrity": "sha1-eoelgUa2laxIYHEUHAxJ1n2gXlw=",
"_location": "/validator",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "validator@^5.2.0",
"name": "validator",
"escapedName": "validator",
"rawSpec": "^5.2.0",
"saveSpec": null,
"fetchSpec": "^5.2.0"
},
"_requiredBy": [
"/sequelize"
],
"_resolved": "https://registry.npmjs.org/validator/-/validator-5.7.0.tgz",
"_shasum": "7a87a58146b695ac486071141c0c49d67da05e5c",
"_spec": "validator@^5.2.0",
"_where": "/Users/hyewon/Documents/KHU/capstone2/2016104140/code/lms_web/node_modules/sequelize",
"author": {
"name": "Chris O'Hara",
"email": "cohara87@gmail.com"
},
"bugs": {
"url": "http://github.com/chriso/validator.js/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "String validation and sanitization",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-rollup": "^1.1.1",
"coveralls": "^2.11.9",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"rollup": "^0.29.1",
"rollup-plugin-babel": "^2.5.1",
"uglify-js": "^2.6.2"
},
"engines": {
"node": ">= 0.10"
},
"files": [
"index.js",
"lib",
"README.md",
"LICENCE",
"validator.js",
"validator.min.js"
],
"homepage": "http://github.com/chriso/validator.js",
"keywords": [
"validator",
"validation",
"validate",
"sanitization",
"sanitize",
"sanitisation",
"sanitise",
"assert"
],
"license": "MIT",
"main": "index.js",
"name": "validator",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/chriso/validator.js.git"
},
"scripts": {
"build": "npm run build:browser && npm run build:node",
"build:browser": "babel-node build-browser && npm run minify",
"build:node": "babel src -d . --presets es2015 --plugins add-module-exports",
"clean": "npm run clean:node && npm run clean:browser",
"clean:browser": "rm -rf validator*.js",
"clean:node": "rm -rf index.js lib",
"coveralls": "istanbul cover _mocha --report lcovonly -x validator.js -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "eslint src test",
"minify": "uglifyjs validator.js -o validator.min.js --compress --mangle --comments '/Copyright/'",
"pretest": "npm run lint && npm run build",
"test": "mocha --reporter spec"
},
"version": "5.7.0"
}