-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "carbon-ui",
"version": "1000.0.0",
"description": "Material Design framework for React",
"main": "lib/index.js",
"scripts": {
"prebuild": "npm run clean && npm run lint",
"clean": "rm -rf lib",
"lint": "node_modules/.bin/eslint src",
"build": "node_modules/.bin/babel -d lib src",
"build:watch": "node_modules/.bin/babel -d lib src -w",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/tuckerconnelly/carbon-ui.git"
},
"homepage": "https://github.com/tuckerconnelly/carbon-ui.git",
"keywords": [
"react",
"material",
"design"
],
"author": "Tucker Connelly <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-preset-react-native": "^1.9.0",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.9.0"
},
"dependencies": {
"color": "^0.11.4",
"create-react-class": "^15.6.0",
"lodash": "^4.17.2",
"uranium": "github:tuckerconnelly/uranium"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1"
}
}