-
Notifications
You must be signed in to change notification settings - Fork 935
/
Copy pathpackage.json
99 lines (99 loc) · 2.54 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
92
93
94
95
96
97
98
99
{
"name": "yup",
"version": "0.26.0",
"description": "Dead simple Object schema validation",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run test-all -- --runInBand",
"testonly": "jest",
"test-all": "npm run testonly -- --projects ./jest-sync.config.json --projects ./package.json",
"tdd": "jest --watch",
"lint": "eslint src test",
"precommit": "lint-staged",
"toc": "doctoc README.md --github",
"build": "babel src --out-dir lib && npm run toc",
"release": "release"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/jquense/yup.git"
},
"author": "@monasticpanic Jason Quense",
"license": "MIT",
"bugs": {
"url": "https://github.com/jquense/yup/issues"
},
"homepage": "https://github.com/jquense/yup",
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"globals": {
"YUP_USE_SYNC": true
},
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./test-setup.js",
"roots": [
"test"
],
"testRegex": "\\.js",
"testPathIgnorePatterns": [
"helpers\\.js"
]
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.47",
"@babel/core": "^7.0.0-beta.47",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^22.4.3",
"babel-preset-jason": "^4.2.0",
"benchmark": "^2.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"doctoc": "^1.3.1",
"eslint": "^4.19.1",
"eslint-config-jason": "^4.0.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.10.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.2.0",
"mt-changelog": "^0.6.2",
"prettier": "^1.13.7",
"promises-aplus-tests": "^2.1.2",
"release-script": "^1.0.2",
"rollup": "^0.63.3",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-filesize": "^2.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-size-snapshot": "^0.6.1",
"sinon": "^5.0.7",
"sinon-chai": "^3.2.0"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.47",
"fn-name": "~2.0.1",
"lodash": "^4.17.10",
"property-expr": "^1.5.0",
"synchronous-promise": "^1.0.18",
"toposort": "^2.0.2"
},
"resolutions": {
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51"
},
"release-script": {
"defaultDryRun": "false"
}
}