-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.99 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
73
{
"name": "proxy-validator",
"version": "1.1.0",
"description": "Small package that leverages the power of ES6 Proxy to validate and sanitize objects.",
"main": "lib/index.js",
"scripts": {
"start": "rollup -c -w",
"build": "NODE_ENV=production rollup -c",
"lint": "eslint . --fix --ext .js src/ rollup.config.js",
"test": "NODE_ENV=test jest",
"precommit": "npm run test && lint-staged",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"lint-staged": {
"*.js": [
"eslint . --fix --ext .js src/ rollup.config.js"
]
},
"dependencies": {
"validator": "^10.4.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-3": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"flow-bin": "^0.77.0",
"husky": "^0.14.3",
"jest": "^23.4.1",
"lint-staged": "^7.2.0",
"regenerator-runtime": "^0.12.0",
"release": "^4.0.1",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^1.0.1",
"rollup-watch": "^4.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sorodrigo/proxy-validator.git"
},
"keywords": [
"es6",
"es6-proxy",
"javascript",
"proxy",
"validator",
"sanitize",
"validate",
"sanitizing"
],
"author": "@sorodrigo",
"license": "MIT",
"bugs": {
"url": "https://github.com/sorodrigo/proxy-validator/issues"
},
"browserslist": [
"> 1%"
],
"homepage": "https://github.com/sorodrigo/proxy-validator#readme"
}