-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "ic-formable",
"version": "0.0.3",
"description": "A react form library",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nbwar/icformable.git"
},
"scripts": {
"build": "babel src -d dist",
"lint": "eslint src/**; exit 0",
"lint:watch": "esw -w src/**",
"prepublish": "npm run build"
},
"keywords": [
"react",
"forms"
],
"author": "Nick Wargnier",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.9.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"react": "^15.4.0",
"react-dom": "^15.4.0"
},
"dependencies": {
"prop-types": "^15.6.0",
"radium": "^0.19.5",
"validator": "^9.0.0"
},
"peerDependencies": {
"react": "^15.4.0"
}
}