-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.03 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.03 KB
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
{
"name": "@cofp/coffeeless-react-forms",
"description": "Form validation made easy for React apps",
"version": "2.8.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc --p tsconfig.build.json && npm run copy-files",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:unit": "npm test -- --watch -c jest-unit.config.js",
"test:integration": "npm test -- --watch -c jest-integration.config.js",
"test:staged": "npm test --findRelatedTests",
"test:watch": "npm test -- --watch --no-cache",
"test:ci": "npm test -- --coverage",
"test:debug": "npm test key-matches.spec.ts",
"prepare": "husky install",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/css/*.css dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Coffeeless-Programming-Playground/coffeeless-react-forms.git"
},
"keywords": [
"form",
"validation",
"react",
"hoc"
],
"author": "Diego Salas Noain <dominicsc2hs@gmail.com>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/Coffeeless-Programming-Playground/coffeeless-react-forms/issues"
},
"homepage": "https://github.com/Coffeeless-Programming-Playground/coffeeless-react-forms#readme",
"devDependencies": {
"@faker-js/faker": "^6.0.0-alpha.7",
"@types/jest": "^27.4.1",
"@types/node": "^20.10.0",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"copyfiles": "^2.4.1",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-mock-extended": "^3.0.1",
"lint-staged": "^15.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^6.0.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.5.1",
"typescript": "^4.6.2"
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"dependencies": {
"coffeeless-react-validators": "^1.2.0"
}
}