This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
91 lines (91 loc) · 2.67 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "veasy",
"version": "1.7.1",
"author": "AlbertGao",
"main": "dist/index.js",
"description": "An elegant react form solution which focus on form validation and more.",
"contributors": [
{
"name": "AlbertGao",
"email": "[email protected]"
}
],
"private": false,
"scripts": {
"lint": "eslint src test",
"flow": "flow",
"clean": "rimraf dist/",
"build": "rimraf dist/ && babel src/ --source-maps --out-dir dist/",
"test": "./node_modules/.bin/jest --coverage",
"doc": "docsify serve ./docs",
"example": "node example.js",
"prepare": "npm run clean && npm run lint && npm run test && npm run build",
"pub": "./node_modules/.bin/np",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Albert-Gao/veasy"
},
"keywords": [
"react",
"form",
"validation",
"javascript",
"es6",
"library",
"npm-package"
],
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"coveralls": "3.0.1",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.3",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-flowtype": "2.46.3",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"jest": "22.4.3",
"np": "2.20.1",
"react": "16.3.2",
"react-dom": "16.3.2",
"react-test-renderer": "16.3.2",
"rimraf": "2.6.2",
"run-sequence": "2.2.1"
},
"engine": "node >= 6.5.x",
"homepage": "https://github.com/Albert-Gao/veasy#readme",
"bugs": {
"url": "https://github.com/Albert-Gao/veasy/issues"
},
"license": "MIT",
"prettier": {
"singleQuote": true,
"tabWidth": 2
},
"dependencies": {
"is_js": "0.9.0",
"prop-types": "15.6.1"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.*",
"!src/flowTypes.js"
]
}
}