-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 976 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 976 Bytes
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
{
"name": "react-switch-input",
"version": "1.1.0",
"description": "Switch input",
"keywords": [
"switch",
"input",
"react",
"react-component"
],
"main": "./dist/switch.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --progress --colors",
"clean": "rm -rf dist",
"prepublish": "npm run clean && npm run build",
"pack": "npm run clean && npm pack"
},
"author": "Erika Perugachi <erikaperugachi@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/erikaperugachi/react-switch-input"
},
"private": false,
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"react": "^16.2.0",
"style-loader": "^0.19.1",
"webpack": "^3.10.0"
},
"peerDependencies": {
"react": ">=0.14.0"
}
}