-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 911 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 911 Bytes
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
{
"name": "react-formable-validators",
"version": "1.0.0-alpha-1",
"description": "Validators for react-formable ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn && npm run test && tsc",
"test": "yarn && jest",
"test:watch": "yarn && jest --watchAll"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/jest": "^22.1.3"
},
"devDependencies": {
"jest": "^22.4.2",
"prettier": "^1.10.2",
"ts-jest": "^22.4.0",
"typescript": "^2.7.2"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testPathIgnorePatterns": ["dist"],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": ["ts", "tsx", "js", "json"],
"modulePaths": ["src/", "node_modules"],
"moduleDirectories": ["node_modules", "src"]
}
}