forked from jquense/yup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.12 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
{
"name": "yup",
"version": "0.24.1",
"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.js --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": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./test-setup.js",
"roots": ["test"],
"testRegex": "\\.js",
"testPathIgnorePatterns": ["helpers\\.js"]
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.2",
"babel-jest": "^20.0.3",
"babel-polyfill": "^6.7.4",
"babel-preset-jason": "^3.1.0",
"benchmark": "^2.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"dirty-chai": "^1.2.2",
"doctoc": "^1.0.0",
"eslint": "^3.4.0",
"eslint-config-jason": "^4.0.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-react": "^6.2.0",
"husky": "^0.14.3",
"jest": "^20.0.3",
"lint-staged": "^6.1.0",
"mt-changelog": "^0.6.2",
"prettier": "^1.10.2",
"promises-aplus-tests": "^2.1.2",
"release-script": "^0.5.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.10.0"
},
"dependencies": {
"case": "^1.2.1",
"fn-name": "~1.0.1",
"lodash": "^4.17.0",
"property-expr": "^1.2.0",
"synchronous-promise": "^1.0.18",
"toposort": "^1.0.6",
"type-name": "^2.0.1"
},
"release-script": {
"defaultDryRun": "false"
}
}