-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 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
67
68
69
{
"name": "react-optimize",
"version": "1.0.2",
"main": "lib/react-optimize.js",
"types": "lib/react-optimize.d.ts",
"repository": "hudovisk/react-optimize",
"license": "MIT",
"files": [
"/lib"
],
"scripts": {
"lint:fix": "yarn lint --fix",
"lint": "eslint src/ test/",
"test:node": "mocha --require @babel/register test/test.node.js",
"test:browser": "cross-env NODE_ENV=test karma start",
"test": "yarn run test:node && yarn run test:browser && yarn run lint",
"build": "rm -Rf lib && webpack",
"watch": "webpack --watch",
"prepublishOnly": "yarn run build"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn run lint"
}
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.3.0",
"chai": "^4.3.4",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^5.2.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"mocha": "^10.2.0",
"prettier": "^2.8.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"semantic-release": "^20.1.0",
"sinon": "^10.0.1",
"webpack": "^4.46.0",
"webpack-cli": "^4.10.0"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^16.3.0"
}
}