-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 2.06 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
{
"name": "react-animated-show-more",
"version": "1.0.2",
"description": "Fully customizable animated 'show more' plugin",
"main": "build/index.js",
"repository": "https://github.com/tinacious/react-animated-show-more",
"author": "Tina Holly",
"license": "MIT",
"private": false,
"scripts": {
"build": "webpack",
"bundle-demo": "parcel build src/index.html --out-dir ./docs --public-url ./",
"prepublish": "npm run build",
"lint": "eslint src",
"test": "jest src",
"ci": "npm run build && npm run bundle-demo && npm run lint && npm test",
"coverage-ci": "codecov",
"test:watch": "jest src --watch",
"open-coverage": "open coverage/lcov-report/index.html",
"start": "parcel src/index.html --out-dir tmp"
},
"jest": {
"collectCoverage": true,
"setupFilesAfterEnv": [
"<rootDir>/test-helpers/setup/enzyme.js"
]
},
"dependencies": {},
"peerDependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-react": "^6.24.1",
"codecov": "^3.3.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"jest": "^24.7.1",
"parcel": "^1.12.3",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
}
}