-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "v4f",
"version": "0.1.2",
"homepage": "https://v4f.js.org",
"repository": {
"type": "git",
"url": "https://github.com/web-pyjs/v4f"
},
"description": "A declarative, efficient, and flexible JavaScript validation library for Humans .",
"maintainers": [
"soufiane nassih"
],
"main": "lib/cjs.js",
"module": "lib/es.js",
"typings": "index.d.ts",
"author": "Nassih soufiane",
"files": [
"lib",
"index.d.ts"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"eslint": ">= 5.0.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.0",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"regenerator-runtime": "^0.13.1",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-node-resolve": "^4.0.0"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "jest",
"tc": "jest --coverage && rm -rf ./coverage",
"lint": "eslint ./src",
"coverage": "codecov"
}
}