-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "@codeparticle/react-list",
"version": "39.0.0",
"description": "A generic list component for React",
"main": "index.js",
"scripts": {
"test": "jest ./test",
"lint": "eslint src/** --fix",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:postrelease": "npm run release:github && npm run release:npm",
"release:github": "git push --no-verify --follow-tags origin master",
"release:npm": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeparticle/react-list.git"
},
"keywords": [
"react",
"list",
"codeparticle"
],
"author": "Code Particle",
"license": "ISC",
"bugs": {
"url": "https://github.com/codeparticle/react-list/issues"
},
"homepage": "https://github.com/codeparticle/react-list#readme",
"dependencies": {
"prop-types": "^15.7.2",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"babel-jest": "^29.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"jest": "29.7.0",
"react-dom": "^18.2.0",
"standard-version": "^9.3.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>setup/enzyme.js"
]
}
}