forked from hudovisk/react-optimize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
{
"name": "react-optimize",
"version": "1.0.2",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"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",
"build": "webpack",
"watch": "webpack --watch",
"prepublishOnly": "yarn run build"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"husky": "^1.3.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^6.1.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"semantic-release": "^15.13.3",
"sinon": "^7.3.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^16.3.0"
}
}