forked from tuckerconnelly/carbon-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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": "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 <web@tuckerconnelly.com>",
"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.10.0",
"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.6.0"
},
"dependencies": {
"color": "^0.11.4",
"lodash": "^4.17.2",
"react-native-ps": "0.0.7",
"uranium": "github:tuckerconnelly/uranium"
}
}