-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.85 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.85 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
{
"name": "sandhands",
"version": "1.8.9",
"description": "Sanitize, don't let your database get sick",
"license": "ESMIT",
"main": "./dist/Sandhands.js",
"scripts": {
"build": "microbundle",
"build-production": "cross-env NODE_ENV=production microbundle",
"dev": "cross-env NODE_ENV=development microbundle watch",
"build-docs": "cd docs-source && cross-env NODE_ENV=production npm run deploy",
"test": "mocha \"tests/**/*.js\"",
"prepublishOnly": "npm run build-production&&npm run test",
"publish-alias": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/L1lith/Sandhands.git"
},
"keywords": [
"validate",
"javascript",
"data",
"runtime",
"sanitation",
"js",
"expressive",
"sanitize",
"json",
"object",
"nested",
"deep",
"array",
"string",
"api",
"assert",
"check",
"invalid",
"orm",
"db",
"throw",
"validation",
"input",
"express",
"server",
"web",
"type",
"schema",
"object"
],
"files": [
"/dist/Sandhands.js",
"/dist/Sandhands.js.map",
"LICENSE.md"
],
"author": "Lilith",
"bugs": {
"url": "https://github.com/L1lith/Sandhands/issues"
},
"homepage": "https://github.com/L1lith/Sandhands#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"deepmerge": "^3.3.0",
"microbundle": "^0.13.0",
"mocha": "^10.2.0",
"rollup": "^4.40.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"optionalDependencies": {
"is-my-ip-valid": "^1.0.0"
}
}