-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 826 Bytes
/
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
{
"name": "validate",
"version": "1.0.0",
"description": "Validation lib in a functional fashion",
"main": "lib/index",
"author": "Alejandro Corsino",
"license": "MIT",
"bugs": {
"url": "https://github.com/alecorsino/validate/issues"
},
"homepage": "https://github.com/alecorsino/validate#readme",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "jest",
"test:watch": "npm run build && jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alecorsino/validate.git"
},
"keywords": [
"data",
"validation"
],
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"jest": "^23.6.0",
"rollup": "^0.67.4",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0"
}
}