-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.99 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
{
"name": "classy-forms",
"version": "3.1.1",
"description": "React Form Validation for Class based React Components",
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/cdeutsch/classy-forms",
"license": "MIT",
"keywords": [],
"scripts": {
"describe": "npm-scripts-info",
"build": "run-s clean && run-p build:*",
"build:main": "rollup -c",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.json --declarationDir ./dist && trash dist/__tests__",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src\" --write",
"fix:tslint": "tslint --fix --project .",
"lint": "run-s lint:*",
"lint:ts": "tslint --project tsconfig.json --force --format stylish",
"lint:prettier": "prettier \"src/**/*.ts?\" --list-different",
"release": "run-s build && standard-version",
"watch": "rollup -cw",
"version": "standard-version",
"test": "NODE_ENV=test jest",
"clean": "trash dist"
},
"scripts-info": {
"describe": "Display information about the package scripts",
"build": "Clean and rebuild the project",
"fix": "Try to automatically fix any linting problems",
"lint": "Lint the project",
"release": "Build and version the project",
"watch": "Watch and rebuild the project on save",
"version": "Bump package.json version, update CHANGELOG.md, tag release"
},
"engines": {
"node": ">=8.9"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@bitjson/npm-scripts-info": "^1.0.0",
"@types/enzyme": "^3.10.11",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"cz-conventional-changelog": "^3.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.64.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sass": "^1.2.10",
"standard-version": "^9.3.2",
"trash-cli": "^4.0.0",
"ts-jest": "^27.1.3",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^4.2.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"standard-version": {
"scripts": {
"postchangelog": "code --wait CHANGELOG.md"
}
}
}