-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.86 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
{
"name": "react-spoiler",
"author": "Abdullah <abdullahtariq52@gmail.com> (https://github.com/abdullahtariq1171)",
"version": "0.4.3-beta.0",
"description": "A spoiler component for reactjs.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"license": "MIT",
"scripts": {
"watch": "babel src --copy-files --watch --out-dir lib",
"demo": "nwb react run demo.js",
"prepublish": "yarn build",
"publish:beta": "npm publish --tag=next",
"build-old": "babel src -d lib --presets minify",
"build": "rollup -c",
"test": "jest __tests__",
"test:watch": "jest __tests__ --watch"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"jest": {
"setupTestFrameworkScriptFile": "./setupTests.js"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-preset-minify": "^0.5.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"jest": "^23.6.0",
"nwb": "^0.23.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.5.2",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.2"
},
"repository": "abdullahtariq1171/react-spoiler",
"bugs": {
"url": "https://github.com/abdullahtariq1171/react-spoiler/issues"
},
"keywords": [
"react",
"reactjs",
"react-spoiler",
"spoiler",
"react-component",
"component",
"ui",
"view"
],
"files": [
"dist"
]
}