forked from orzechowskid/react-tt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.58 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-tt",
"version": "1.1.9",
"description": "minimal, responsive, React tooltip component",
"main": "dist/index.js",
"module": "esm/index.js",
"scripts": {
"test": "jest --coverage src/",
"build:dev": "NODE_ENV=development rollup -c rollup.config.js",
"build:example": "NODE_ENV=development APP_ENV=example rollup -c rollup.config.js",
"build:prod": "NODE_ENV=production rollup -c rollup.config.js",
"preexample": "npm run build:example",
"prepublishOnly": "npm run build:prod",
"example": "static -a 0.0.0.0 -p 8808 example/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/orzechowskid/react-tt.git"
},
"keywords": [
"react",
"tooltip"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/orzechowskid/react-tt/issues"
},
"homepage": "https://orzechowskid.github.io/react-tt",
"jest": {
"moduleNameMapper": {
"\\.scss$": "identity-obj-proxy"
},
"setupFiles": [
"<rootDir>/__tests__/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"peerDependencies": {
"react": "^15.6.1 || ^16.x"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"check-prop-types": "^1.1.2",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.3",
"gh-pages": "^2.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.7.1",
"node-sass": "^4.12.0",
"node-static": "^0.7.10",
"postcss-cssnext": "^3.1.0",
"postcss-simple-vars": "^4.1.0",
"prop-types": "^15.6.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-postcss-modules": "^2.0.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4",
"sass-export": "^1.0.4"
},
"dependencies": {}
}