-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.6 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.6 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-double-marquee",
"version": "1.0.7",
"description": "A smooth-scrolling React <marquee> component that loops content.",
"main": "dist/bundle.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup --config config/rollup.config.prod.js",
"build:watch": "npm run build -- --watch",
"cz": "git-cz",
"dev": "rollup --config config/rollup.config.dev.js --watch",
"docs": "rollup --config config/rollup.config.docs.js",
"lint": "eslint \"src/**\"",
"release": "semantic-release",
"release:verify": "npm run build && npm run lint && npm run docs && npm run release",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"test:coveralls": "npm run test:coverage && cat coverage/lcov.info | coveralls",
"test:watch": "npm run test -- --watch"
},
"keywords": [
"React",
"Marquee",
"Component"
],
"author": "Colin Tinney (https://tinney.dev)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.0.10",
"@semantic-release/release-notes-generator": "9.0.1",
"@timdp/rollup-plugin-image": "^1.0.3",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.3",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"jest": "^24.9.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-live-server": "^1.0.3",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-postcss": "^2.9.0",
"rollup-plugin-replace": "^2.2.0",
"semantic-release": "17.3.9"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-json-pretty": "^2.2.0",
"react-jss": "^8.6.1"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
]
}
}