-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "@cypress/react-tooltip",
"version": "0.0.0-development",
"description": "A tooltip component for React apps",
"main": "dist/tooltip.js",
"scripts": {
"build": "node ./scripts/build-dev.js",
"build-prod": "node ./scripts/build-prod.js",
"lint": "eslint --fix src/*.jsx",
"precommit": "npm run lint",
"prepublishOnly": "npm run build-prod",
"design": "node ./scripts/design.js --port 8888",
"watch": "node ./scripts/watch.js",
"test": "node ./scripts/test.js",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cypress-io/react-tooltip.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cypress-io/react-tooltip/issues"
},
"homepage": "https://github.com/cypress-io/react-tooltip#readme",
"files": [
"dist"
],
"dependencies": {
"popper.js": "^1.15.0"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"chai": "4.3.4",
"chai-enzyme": "1.0.0-beta.1",
"condition-circle": "2.0.2",
"dont-crack": "1.2.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "6.8.0",
"eslint-plugin-cypress-dev": "3.0.2",
"eslint-plugin-mocha": "6.3.0",
"eslint-plugin-react": "7.25.1",
"fs-extra": "9.1.0",
"jsdom": "15.2.1",
"lodash": "4.17.21",
"prop-types": "15.7.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"semantic-release": "17.4.7",
"sinon": "9.2.4",
"sinon-chai": "3.7.0",
"zunder": "6.4.6"
},
"peerDependencies": {
"lodash": "^4.17.11",
"prop-types": "^15.7.2",
"react": ">= 16",
"react-dom": ">= 16"
}
}