-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "uranium",
"version": "0.1.2",
"description": "Universal extension of React styles.",
"main": "lib/index.js",
"scripts": {
"prebuild": "rimraf lib",
"build": "babel -d lib src",
"build:watch": "babel -d lib src -w",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/tuckerconnelly/uranium.git"
},
"homepage": "https://github.com/tuckerconnelly/uranium.git",
"keywords": [
"react",
"uranium"
],
"author": "Tucker Connelly <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-preset-react-native": "^1.9.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0"
},
"peerDependencies": {
"react": ">=15.3.2"
},
"dependencies": {
"decamelize": "^1.2.0",
"jshashes": "^1.0.5",
"lodash": "^4.17.2"
}
}