-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "simple-react-clipboard",
"version": "1.0.3",
"description": "A simple and flexible React utility component for copying texts to the clipboard.",
"main": "lib/index.js",
"scripts": {
"dev": "concurrently \"npm run lib:watch\" \"npm run docs\"",
"lib": "babel src/lib -d lib --copy-files",
"lib:watch": "babel src/lib -w -d lib --copy-files",
"docs": "webpack-dev-server --mode development",
"docs:prod": "webpack --mode production",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Donovan So",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/donfour/simple-react-clipboard"
},
"peerDependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-loader": "7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-syntax-highlighter": "^8.0.1",
"regenerator-runtime": "^0.12.1",
"style-loader": "^0.21.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
}
}