-
Notifications
You must be signed in to change notification settings - Fork 186
/
package.json
38 lines (38 loc) · 935 Bytes
/
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
{
"name": "react-signature-pad",
"version": "0.0.6",
"description": "A signature pad implementation for react.",
"main": "lib/app.js",
"scripts": {
"test": "webpack && npm pack",
"start": "webpack-dev-server --hot --inline",
"dist": "webpack -p --config webpack.production.config.js"
},
"keywords": [
"react",
"react-component",
"signature",
"form",
"ui"
],
"repository": {
"type": "git",
"url": "https://github.com/blackjk3/react-signature-pad.git"
},
"author": "Jason Kadrmas",
"license": "MIT",
"devDependencies": {
"babel-core": "^5.6.15",
"babel-loader": "^5.3.1",
"node-libs-browser": "^0.5.2",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-hot-loader": "^1.2.7",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
}
}